diff options
Diffstat (limited to '2024/tcl/templ.tcl')
-rwxr-xr-x | 2024/tcl/templ.tcl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2024/tcl/templ.tcl b/2024/tcl/templ.tcl new file mode 100755 index 0000000..e040b2f --- /dev/null +++ b/2024/tcl/templ.tcl @@ -0,0 +1,18 @@ +#!/bin/env tclsh + +source lib.tcl +setup ? + +puts {Part 1: } + +while {[gets $input line] != -1} { +} + +close $input + +puts "1: $" + +puts "" +puts {Part 2: } + +puts "2: $" |