8 lines
180 B
Tcl
8 lines
180 B
Tcl
# This is a simple "Hello world" program.
|
|
|
|
# Programs need a main() function to run:
|
|
func main():
|
|
|
|
# Edit this code so it prints the text "Hello world"
|
|
say("Goodbye moon")
|