8 lines
180 B
Plaintext
8 lines
180 B
Plaintext
|
# 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")
|