summary refs log blame commit diff stats
path: root/tests/actiontable/tactiontable2.nim
blob: fbc65a67d7bc7f0aac38febd0dbf05cccf2e6fa9 (plain) (tree)
1
2
3
4
5
6
7
8
9
           
                        



             
                           

                       
                           

                       
                           

                       
                           



                       


                 



                         
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

const
  actionTable = {
    "A": action1,
    "B": action2,
    "C": action3,
    "D": action4}.toTable

actionTable["C"]("arg")