diff options
author | Araq <rumpf_a@web.de> | 2011-04-18 23:41:31 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-04-18 23:41:31 +0200 |
commit | d1b766cec03277ac4086ddf7bd371d7bc20b2b4d (patch) | |
tree | 5967e085776933b5f4ea31a4669b77dc5a952423 /tests/accept/compile | |
parent | 48dd9679bd2196369a8a6f93f6225ad730683c25 (diff) | |
download | Nim-d1b766cec03277ac4086ddf7bd371d7bc20b2b4d.tar.gz |
hashtables: 1st version; parseutils additions
Diffstat (limited to 'tests/accept/compile')
-rw-r--r-- | tests/accept/compile/ttempl4.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/accept/compile/ttempl4.nim b/tests/accept/compile/ttempl4.nim index 273605669..a5ad2000f 100644 --- a/tests/accept/compile/ttempl4.nim +++ b/tests/accept/compile/ttempl4.nim @@ -2,7 +2,7 @@ template `:=`(name, val: expr): stmt = var name = val -ha := 1 -hu := "ta-da" +ha := 1 * 4 +hu := "ta-da" == "ta-da" echo ha, hu |