puts "Hello, World - In quotes" ;# This is a comment after the command. # This is a comment at beginning of a line puts {Hello, World - In Braces} puts {Bad comment syntax example} # *Error* - there is no semicolon! puts "This is line 1"; puts "this is line 2" puts "Hello, World; - With a semicolon inside the quotes" # Words don't need to be quoted unless they contain white space: puts HelloWorld 튜토리얼의 전통적인 시작점은 고전적인 "Hello, World" 프로그램입니다.
문자열을 인쇄할 수 있게 되면 재미와 이익을 위해 Tcl을 사용할 수 있게 된 것입니다! Tcl에서...
#
이
원문 링크 : Simple Text Output