/*this is our first comment for our first line of code*/
SAY "SAY" say HI hi;
Say "what's 3/2?" -- this is the question
say "it's" 3/2-- this is the result
say "this is a very long sentence that we can" -
"break up with just a -";
DO;
a=3
say "who goes first?"
b = "you"
c = "me"
if a > 4 then SAY b;
if a<=4 then say c
a=5 -- too late
EnD;
### output
SAY SAY HI HI
what's 3/2?
it's 1.5
this is a very long sentence that we can break up with just a -
who goes first?
me