summary refs log blame commit diff stats
path: root/tests/vm/tconsttable.nim
blob: 64a74a59d589da96900f67ae6c300cf8fe94d149 (plain) (tree)


















                                                                       
discard """
  output: '''is
finally
nice!'''
"""

import tables

const
  foo = {"ah": "finally", "this": "is", "possible.": "nice!"}.toTable()

# protect against overly smart compiler:
var x = "this"

echo foo[x]
x = "ah"
echo foo[x]
x = "possible."
echo foo[x]