diff options
author | Araq <rumpf_a@web.de> | 2011-04-11 23:28:53 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-04-11 23:28:53 +0200 |
commit | 46c41e43690cba9bc1caff6a994bb6915df8a1b7 (patch) | |
tree | c96be792eceb1d189cdb5bcff6e1a06f9b51e76c /examples/tclex.nim | |
parent | 3d696c3da53e5c41d839d8265fbc94f1c64980bb (diff) | |
download | Nim-46c41e43690cba9bc1caff6a994bb6915df8a1b7.tar.gz |
p[] instead of p^
Diffstat (limited to 'examples/tclex.nim')
-rwxr-xr-x | examples/tclex.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tclex.nim b/examples/tclex.nim index 8abdb7d9c..83e4bed00 100755 --- a/examples/tclex.nim +++ b/examples/tclex.nim @@ -14,7 +14,7 @@ bind .e <Return> { } """ -FindExecutable(getApplicationFilename()) +FindExecutable(getAppFilename()) var interp = CreateInterp() if interp == nil: quit("cannot create TCL interpreter") if Init(interp) != TCL_OK: |