Re: Variable naming in Euphoria
- Posted by Alex Ford <FFUltimateMaster at CS.COM> Aug 11, 2000
- 505 views
to futures8 at PCOLA.GULF.NET (futures8):
er... i belive you can just do this:
(for DOS)
atom i
i = 1
if i = 1 then
puts(1, "I is 1\n")
else
puts(1, "what happened? I is supposed to be 1\n")
end if
which when ran, should display "I is 1"... that code should be pretty easy to
understand and modify... if you need more help... just ask =)

