diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-11-24 16:18:21 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-11-24 16:18:21 -0500 |
| commit | 1e3fb8a2c0cca385d65c52679411b118b5fb4641 (patch) | |
| tree | e8e7ae5b4a8b4f39ed867c238f1a05494b6a50ac /test/tables.tm | |
| parent | 0e10313d64f54dd587ebbcd5f413bd999333c911 (diff) | |
Rename "NULL" to "NONE"
Diffstat (limited to 'test/tables.tm')
| -rw-r--r-- | test/tables.tm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tables.tm b/test/tables.tm index 85ce5e01..acda0eb5 100644 --- a/test/tables.tm +++ b/test/tables.tm @@ -7,7 +7,7 @@ func main(): >> t:get("two") = 2 : Int? >> t:get("???") - = NULL : Int? + = NONE : Int? >> t:get("one")! = 1 >> t:get("???") or -1 @@ -22,7 +22,7 @@ func main(): >> t.length = 2 >> t.fallback - = NULL : {Text:Int}? + = NONE : {Text:Int}? >> t.keys = ["one", "two"] @@ -37,7 +37,7 @@ func main(): >> t2:get("three") = 3 : Int? >> t2:get("???") - = NULL : Int? + = NONE : Int? >> t2.length = 1 |
