Files
Nim/tests/vm/tconsttable.nim

20 lines
262 B
Nim

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]