1. to Rafael & Brent
Thanks for the motivation, Rafael. Will try to keep it up.
Brent, since you didn't send me the program that didn't work, I'll send y=
ou
one of my own.
--first.ex
constant SCREEN =3D 1
sequence myname, mycountry
myname =3D "Brent"
mycountry =3D "New Zealand"
puts(SCREEN,myname) -- see how it uses the constant declared
puts(SCREEN,mycountry)
--end first.ex
Big problem. Its all smashed together. \n is just another character. S=
o,
to output a carriage return this is fine
puts(SCREEN,"\n")
Note that -- at the beginning of a line means the line is a comment. A
dash -- in the middle means that anything after that on that line is a
comment.
Alan
=