diff options
author | George V. Neville-Neil <gnn@FreeBSD.org> | 2012-05-12 20:38:18 +0000 |
---|---|---|
committer | George V. Neville-Neil <gnn@FreeBSD.org> | 2012-05-12 20:38:18 +0000 |
commit | 055173dba4a263acf10325a49eebf82915369ed2 (patch) | |
tree | aec2772e8855e6dbaea6d8136ed0c47bcb825dee /Code/Tcl/func_abc.tcl | |
parent | 87c8f7aa3a46118212b99f0d58b18aa93c06b02a (diff) |
Notes
Diffstat (limited to 'Code/Tcl/func_abc.tcl')
-rw-r--r-- | Code/Tcl/func_abc.tcl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Code/Tcl/func_abc.tcl b/Code/Tcl/func_abc.tcl new file mode 100644 index 000000000000..c84acb074882 --- /dev/null +++ b/Code/Tcl/func_abc.tcl @@ -0,0 +1,20 @@ +#!./tclsh + +proc func_c {} { + puts "Function C" + after 1000 +} + +proc func_b {} { + puts "Function B" + after 1000 + func_c +} + +proc func_a {} { + puts "Function A" + after 1000 + func_b +} + +func_a |