일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- uml example
- 도서
- Algorithm
- 안드로이드
- 공매도
- Eclipse
- java
- 태터수정
- conemu
- UX
- adb
- 주식
- IT 키워드
- IPTV
- 작성중
- Qmail
- Linux
- 코스피
- unix
- LDAP
- eclipse35
- 알고리즘
- Android
- Audacity
- KOSPI
- 보안
- 기술사
- ubuntu
- 우분투
Archives
- Today
- Total
Do diffence
[How To] Tcl Hello World example 본문
Platform: Ubuntu 8.x 이상
Tcl interpreter 설치
or
링크: http://www.thegeekstuff.com/2010/04/tcl-hello-world-example-how-to-write-compile-and-execute-tcl-program-on-linux-os/
Tcl interpreter 설치
$ sudo apt-get install tcl8.3
$ vi hello.tcl
#!/usr/bin/tclsh
# Hello example
puts "Hello, World!"
puts "강태 안녕!"
$ tclsh hello.tcl
#!/usr/bin/tclsh
# Hello example
puts "Hello, World!"
puts "강태 안녕!"
$ tclsh hello.tcl
$ chmod u+x helloworld.tcl
$ ./hellow.tcl