Re: Requesting help again... as a beginner....
- Posted by doncole2009 May 24, 2009
- 980 views
Hello Mattymatt,
To indent you code it would depend on which editor you are using, See the docs for you editor.
To indent in euphoria:
puts(1,repeat(" ",6)&"hello")
or
puts(1,"\t hello")\t is tab
As for your code you have a while and a for loop not closed.
Your code should be:
procedure whatever()--open procedure while t = {1,10000} do --open while loop if t <= 2 then --open if loop --your stuff end if --close if loop end while --close while loop end procedure--close procedure
don cole