diff options
| author | henesy <henesy.dev@gmail.com> | 2019-03-11 22:20:41 -0500 |
|---|---|---|
| committer | henesy <henesy.dev@gmail.com> | 2019-03-11 22:20:41 -0500 |
| commit | 747ef3dcbcb100c40659805d13d966540a892319 (patch) | |
| tree | 8528d1abb0dad5ff67bf04168d1d4661d91b8918 /Function-Refs/funcrefs.b | |
| parent | cd8fd72bbb8de47f88390db0f13add61da2c90a1 (diff) | |
add function references example
Diffstat (limited to 'Function-Refs/funcrefs.b')
| -rw-r--r-- | Function-Refs/funcrefs.b | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Function-Refs/funcrefs.b b/Function-Refs/funcrefs.b index d4b7259..deb6ed1 100644 --- a/Function-Refs/funcrefs.b +++ b/Function-Refs/funcrefs.b @@ -47,10 +47,10 @@ init(nil: ref Draw->Context, nil: list of string) { c := 0; - if(choose(c)("quack", "quack") <= 0) - print("quack ≤ quack\n"); + if(choose(c)("quack", "quack") >= 0) + print("quack ≥ quack\n"); else - print("quack > quack\n"); + print("quack < quack\n"); exit; } |
