From ffefb736d9a408602f0dca9a762bd090c1c8cd1d Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 19 Aug 2011 09:07:23 +0200 Subject: small bugfix for eval --- tests/accept/run/tactiontable.nim | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/accept/run/tactiontable.nim (limited to 'tests/accept/run') diff --git a/tests/accept/run/tactiontable.nim b/tests/accept/run/tactiontable.nim new file mode 100644 index 000000000..6fe39359c --- /dev/null +++ b/tests/accept/run/tactiontable.nim @@ -0,0 +1,27 @@ +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") + -- cgit 1.4.1-2-gfad0 rm> mirror of ranger - a simple, vim-like file managerakspecs <akspecs@tilde.institute>
summary refs log blame commit diff stats
path: root/doc/pydoc/ranger.container.keybuffer.html
blob: 5ebc033a9fdef3d5cc6e9c370f6c17a103efded0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10