Re: creating a game ... ? (help!)
- Posted by Chris Burch <chriscrylex at aol.com> Sep 11, 2004
- 524 views
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)
integer x for i = 1 to 100 do x = i * 2 printf("Numbers are : %d , %d \n", {i, x} end for
(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