Comments¶
Comments are blocks of text within scripts that are not read by the compiler. They are mostly used to help the reader, and to help GUI programs store extra data about the nodes.
Comments are anything after and including the >
symbol on the same line,
as long as the symbol isn’t in a string!
Start~#1
> Now this is a story all about how my life got flipped-turned upside down...
> This next line is in a comment, so the program won't actually print here.
> Print(#1, "Hello, world!")
> This next line still prints as you'd expect.
Print(#1, "So, 2 > 1? Wow.")
$ decision comment.dc
So, 2 > 1? Wow.