2025-03-24 14:17:02 -07:00
|
|
|
# This is a simple "Hello world" program.
|
|
|
|
|
2025-03-25 14:15:27 -07:00
|
|
|
# Lines beginning with a '#' are comments
|
|
|
|
|
2025-03-24 14:17:02 -07:00
|
|
|
# Programs need a main() function to run:
|
|
|
|
func main():
|
|
|
|
|
2025-03-25 14:15:27 -07:00
|
|
|
# The language is indentation-sensitive, so indentation matters!
|
|
|
|
|
2025-03-24 14:17:02 -07:00
|
|
|
# Edit this code so it prints the text "Hello world"
|
|
|
|
say("Goodbye moon")
|