7 lines
343 B
Plaintext
7 lines
343 B
Plaintext
|
|
0 [ "fail - 0 is not truthy" . ] [ "OK" . ] if!
|
||
|
|
1 [ "OK" . ] [ "fail - 1 is truthy" . ] if!
|
||
|
|
1.1 [ "OK" . ] [ "fail - 1.1 is truthy" . ] if!
|
||
|
|
0.1 [ "OK" . ] [ "fail - 0.1 is truthy" . ] if!
|
||
|
|
-0.1 [ "OK" . ] [ "fail - -0.1 is truthy" . ] if!
|
||
|
|
-0.0 [ "fail - -0.0 is not truthy" . ] [ "OK" . ] if!
|
||
|
|
0.0 [ "fail - 0.0 is not truthy" . ] [ "OK" . ] if!
|