aboutsummaryrefslogtreecommitdiff
path: root/test/tables.tm
diff options
context:
space:
mode:
Diffstat (limited to 'test/tables.tm')
-rw-r--r--test/tables.tm10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/tables.tm b/test/tables.tm
index 587a02c8..66318f11 100644
--- a/test/tables.tm
+++ b/test/tables.tm
@@ -3,9 +3,9 @@ func main()
= {"one"=1, "two"=2}
>> t["one"]
- = 1?
+ = 1
>> t["two"]
- = 2?
+ = 2
>> t["???"]
= none
>> t["one"]!
@@ -33,16 +33,16 @@ func main()
= {"three"=3; fallback={"one"=1, "two"=2}}
>> t2["one"]
- = 1?
+ = 1
>> t2["three"]
- = 3?
+ = 3
>> t2["???"]
= none
>> t2.length
= 1
>> t2.fallback
- = {"one"=1, "two"=2}?
+ = {"one"=1, "two"=2}
t2_str := ""
for k,v in t2