tomo-koans/lesson-templates/lesson-02.tm
2025-03-24 16:27:43 -04:00

23 lines
637 B
Tcl

func main():
say("
Let's learn about text concatenation!
It uses the `++` operator:
")
greeting := "Hello "
##############################################################
###################### EDIT BELOW HERE #######################
##############################################################
your_text := greeting ++ "space"
##############################################################
################## DO NOT EDIT AFTER HERE ####################
##############################################################
say(your_text)
>> your_text
= "Hello world"