Comments Bia's comment style is similar to C++'s comments. Single line comments start with // and multiline comments start with /* and end with */. Example: 1 2 3 4 5 6 7 8 9 10 11// next line prints: Hello, World io.print("Hello, World") /* This is a multiline comment I can write anything here */