Update branching example to use new syntax
Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
0 [ "fail - 0 is not truthy" . ] [ "OK" . ] if!
|
0 [ "fail - 0 is not truthy" println! ] [ "OK" println! ] if!
|
||||||
1 [ "OK" . ] [ "fail - 1 is truthy" . ] if!
|
1 [ "OK" println! ] [ "fail - 1 is truthy" println! ] if!
|
||||||
1.1 [ "OK" . ] [ "fail - 1.1 is truthy" . ] if!
|
1.1 [ "OK" println! ] [ "fail - 1.1 is truthy" println! ] if!
|
||||||
0.1 [ "OK" . ] [ "fail - 0.1 is truthy" . ] if!
|
0.1 [ "OK" println! ] [ "fail - 0.1 is truthy" println! ] if!
|
||||||
-0.1 [ "OK" . ] [ "fail - -0.1 is truthy" . ] if!
|
-0.1 [ "OK" println! ] [ "fail - -0.1 is truthy" println! ] if!
|
||||||
-0.0 [ "fail - -0.0 is not truthy" . ] [ "OK" . ] if!
|
-0.0 [ "fail - -0.0 is not truthy" println! ] [ "OK" println! ] if!
|
||||||
0.0 [ "fail - 0.0 is not truthy" . ] [ "OK" . ] if!
|
0.0 [ "fail - 0.0 is not truthy" println! ] [ "OK" println! ] if!
|
||||||
Reference in New Issue
Block a user