diff options
Diffstat (limited to 'tests/actiontable/tactiontable.nim')
-rw-r--r-- | tests/actiontable/tactiontable.nim | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/actiontable/tactiontable.nim b/tests/actiontable/tactiontable.nim deleted file mode 100644 index 4560d0f7f..000000000 --- a/tests/actiontable/tactiontable.nim +++ /dev/null @@ -1,26 +0,0 @@ -discard """ - output: "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 - actionTable = { - "A": action1, - "B": action2, - "C": action3, - "D": action4}.toTable - -actionTable["C"]("arg") |