mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* clean up some test categories * mention exact slice issue * magics into system * move trangechecks into overflow * move tmemory to system * try fix CI * try fix CI * final CI fix
38 lines
548 B
Nim
38 lines
548 B
Nim
discard """
|
|
output: '''
|
|
action 3 arg
|
|
action 3 arg
|
|
'''
|
|
"""
|
|
|
|
import tables
|
|
|
|
proc action1(arg: string) =
|
|
echo "action 1 ", arg
|
|
|
|
proc action2(arg: string) =
|
|
echo "action 2 ", arg
|
|
|
|
proc action3(arg: string) =
|
|
echo "action 3 ", arg
|
|
|
|
proc action4(arg: string) =
|
|
echo "action 4 ", arg
|
|
|
|
var
|
|
actionTable1 = {
|
|
"A": action1,
|
|
"B": action2,
|
|
"C": action3,
|
|
"D": action4}.toTable
|
|
|
|
const
|
|
actionTable2 = {
|
|
"A": action1,
|
|
"B": action2,
|
|
"C": action3,
|
|
"D": action4}.toTable
|
|
|
|
actionTable1["C"]("arg")
|
|
actionTable2["C"]("arg")
|