| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- Qmail
- Linux
- uml example
- KOSPI
- 우분투
- LDAP
- Android
- 보안
- 도서
- 공매도
- 태터수정
- 기술사
- IT 키워드
- 코스피
- unix
- 안드로이드
- eclipse35
- Audacity
- 작성중
- IPTV
- adb
- UX
- 주식
- 알고리즘
- ubuntu
- java
- conemu
- Algorithm
- Eclipse
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