Tcl Hello World Example: How To Write,
Compile and Execute Tcl Programon Linux OS
系统中编写、、编译和运行Tcl程序
程序??
实例::如何在Linux系统中编写
Tcl Hello World 实例
原文出处:点击这里
by Ramesh Natarajan on April 9, 2010 ShareThis
由Ramesh Natarajan于2010年4月9日分享
Question: I would like to understand the basics of how to write and execute
Tcl program on UNIX / Linux OS. Can you explain it with a simple example?
问题:我想理解如何在UNIX/Linux系统中编写和运行Tcl程序的基本知识,您能用一个简单的例子解释下吗?
Answer: In this article, let us review very quickly how to write a basic Hello
World Tcl program and execute tcl program on Linux or Unix OS.
回答:在本文中,让我们快速地复习如何在Linux或Unix操作系统中编写一个基础的Hello World Tcl程序并运行tcl程序。
1. Write a Hello World Tcl Program
1.编写一个Hello World Tcl 程序
Create the helloworld program using the Vim editor as shown below.
使用如下所示的Vim编辑器新建一个helloworld程序:
linux系统vim编辑器$ l
#!/usr/bin/tclsh
# hello world sample program
puts "Hello, World !"
Note: Comment in Tcl starts with #.
提示:Tcl程序中以“#”开头的为注释。
2. Make sure Tcl interpreter is installed on your system
2.确保您的系统安装了Tcl解释器
Make sure Tcl interpreter is installed on your system as shown below.
使用如下命令来确保您的系统安装Tcl解释器:
$ whereis tclsh
tclsh: /usr/bin/tclsh /usr/bin/tclsh8.4 /usr/share/man/man1/
Installing tcl interpreter
安装Tcl解释器
If you don’t have tcl interpreter, install it as shown below.
如果您的系统没有安装Tcl解释器,使用以下命令安装:
$ sudo apt-get install tcl8.4
3. Execute Tcl Program
3.运行Tcl程序
You can either execute using “l” or “./l”.
您可以使用“l”或“./l”来运行程序。
$ l
Hello World!
( or )
或
$ chmod u+l
$ ./l
Hello World!
Note: As Tcl is an interpreted language, you don’t have the compilation step similar to the C program.
提示:因为Tcl是一种解释性的程序语言,您不用进行类似C语言一样的编译步骤操作。
默之
2010-4-10
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论