Re: creating a game ... ? (help!)

new topic     » goto parent     » topic index » view thread      » older message » newer message

Chris Burch wrote:
> 
> Hi
> 
> You're in the right place, and it won't all come from me either!
> 
> 1. Download and install euphoria - have you done that?
> 
> 2. Navigate, with explorer, to the eu directory, find the html folder, and
> click on refman.html. If for some reason you don't have that, find the docs
> folder, and start by clicking on refman.doc. 
> 
> 3. Read everything
> 
> 4. Navigate to the bin directory (still in euphoria folder), and start ed
> by clicking on ed.bat. A dos window will open with the editor running. If
> it is not blank, press ESC, followed by n. You will be asked for a new
> filename. Let's start by entering 'test.ex', withouth the quotes, and press 
> enter.
> 
> 5. now enter this (DO NOT COPY AND PASTE, TYPE)
> 
> }}}
<eucode>
> 
> integer x
> 
> for i = 1 to 100 do
>      x = i * 2
>      printf("Numbers are : %d , %d \n", {i, x}
> end for
> 
> </eucode>
{{{

> 
> (do not think, do)
> 
> 6. Run the program. Press ESC, then e
> 
> Thats it, you've just written your first eu prog.
> 
> Experiment (see 3)
> 
> Next lesson, procedures.
> 
> Chris
> 

Should have been
 integer x
 
 for i = 1 to 100 do
      x = i * 2
      printf(1, "Numbers are : %d , %d \n", {i, x}
 end for
 
 


See, thats the fun, next time I'll leave the deliberate mistake in and
let you find it smile

Chris

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu