Every programming journey starts with Hello World. In bubblecode, you use the say command to display text.
The say command
say prints a value to the screen followed by a new line. Anything in double quotes is treated as text (called a string).
hello.bubbleThat’s it — one line and you’ve written a program! Try changing the text inside the quotes and running it again.
Printing multiple lines
You can use say as many times as you want. Each one prints on a new line.
multi.bubbleComments
Lines starting with -- are comments. They’re notes for humans — bubblecode ignores them completely.
comments.bubbleComments are handy for explaining what your code does or temporarily disabling a line.
Exercise
Exercise
Write a program that prints "I am learning bubblecode!" on the first line and "This is fun!" on the second line.
exercise.bubbleQuiz
Which command prints text to the screen in bubblecode?