Open mfichman opened 11 years ago
For example:
hash = {one: 'two', three: 'four'} hash = Hash[String, String]() hash['one'] = 'five'
Note that this makes it ambiguous whether one: is a key if 'one' is a variable in scope.
Perhaps use Lua syntax:
hash = {one='two', three='four'}
For example:
Note that this makes it ambiguous whether one: is a key if 'one' is a variable in scope.