RosettaCodeData/Task/Hello-world-Line-printer/Tcl/hello-world-line-printer-3.tcl
2023-07-01 13:44:08 -04:00

3 lines
51 B
Tcl

set f [open prn w]
puts $f "Hello World!"
close $f