diff options
Diffstat (limited to 'test/map5.lm')
-rw-r--r-- | test/map5.lm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/map5.lm b/test/map5.lm index 2897c026..d3ad99b5 100644 --- a/test/map5.lm +++ b/test/map5.lm @@ -1,7 +1,7 @@ -new StrMap: vmap<str str>() -StrMap->insert( "hello " ("there") ) -StrMap->insert( "friend" ("how") ) -StrMap->insert( "are " ("you") ) +new StrMap: vmap<str, str>() +StrMap->insert( "hello ", "there" ) +StrMap->insert( "friend", "how" ) +StrMap->insert( "are ", "you" ) ##### EXP ##### |