1. NEW
- Posted by Robsz2 at aol.com Mar 19, 2002
- 532 views
--part1_d.23d29755.29c96f2b_boundary Hello. I am new to programming with Euphoria. I just started 3/14 and I need some resources for good tutorials. I could use as many as you know. I am looking for tutorials for the Windows version and some tutorials for win32lib and tutorials that focus on "For" and "If". I am more used to perl and their fors and ifs are a lot different. I would appreciate any suggestions you might have. Also, maybe an idea for a program that is some what useful and not to hard to develop. Thank you. --part1_d.23d29755.29c96f2b_boundary Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: 7bit <HTML><FONT FACE=arial,helvetica><FONT SIZE=2>Hello. <BR> <BR> I am new to programming with Euphoria. I just started 3/14 and I need some resources for good tutorials. I could use as many as you know. I am looking for tutorials for the Windows version and some tutorials for win32lib and tutorials that focus on "For" and "If". I am more used to perl and their fors and ifs are a lot different. I would appreciate any suggestions you might have. Also, maybe an idea for a program that is some what useful and not to hard to develop. <BR> --part1_d.23d29755.29c96f2b_boundary--
2. Re: NEW
- Posted by Derek Parnell <ddparnell at bigpond.com> Mar 19, 2002
- 547 views
> > I am new to programming with Euphoria. I just started 3/14 and I need > > some resources for good tutorials. As a first port of call, try http://www.rapideuphoria.com/abgte2.zip which is the "A Beginner's Guide To Euphoria" > I could use as many as you know. I am > looking for tutorials for the Windows version and some tutorials for > win32lib Win32lib comes with many sample programs and a reasonable set of Docs. However, we probably should create an annotated edition of all the samples plus "tips". > and tutorials that focus on "For" and "If". I am more used to perl you have our sympathy > and their fors and ifs are a lot different. 'for' sytax is: FOR <loop_index> = <start> TO <end> (BY <incr>) DO <body> END FOR The FOR, TO, DO, and END FOR keywords are mandatory. <loop_index> is the *name* of a variable that Euphoria sets and controls during the looping code. You cannot change its value at any time. The trick to 'for' is that the loop index must not be already declared and its scope is restricted to inside the loop. <start> is the initial value that the loop index receives and <end> is the last value that it can have. The BY clause is optional. If omitted, <incr> is assumed to be 1. At the end of each iteration and before your loop body code gets control, Euphoria adds the <incr> value to the <loop_index>. If this cause the loop index to go beyond the <end> value, the loop is completed and the next line of code after the END FOR is executed. Between the Do and END FOR, you can have any number of statements, however some specific statements are not allowed (such as procedure/function/constant/ etc...). 'if' syntax is: IF <boolean_test> THEN <true_code> (ELSE <false_code>) END IF In other words the IF, THEN and END IF key words are mandatory. If you have an ELSE clause, it must appear after the THEN clause and before the END IF statement. <boolean_test> must be an expression that results in an atom; zero means the test failed, non-zero means the test succeeded. <true_code> only gets executed if the test succeeded, and <false_code> only gets executed if the test failed. There can be any number, including zero, statements in either the <true_code> and <false_code>, however some specific statements are not allowed (such as procedure/function/constant/ etc...). > I would appreciate any suggestions you might have. Try the contributions section of www.rapideuphoria.com , there are hundreds of great ideas there. > Also, maybe an idea for a program that is some > what useful and not to hard to develop. > How about a text-based adventure game? --------- Cheers, Derek Parnell ICQ# 7647806
3. Re: NEW
- Posted by petelomax at blueyonder.co.uk Mar 20, 2002
- 544 views
On Wed, 20 Mar 2002 16:22:20 +1100, Derek Parnell <ddparnell at bigpond.com> wrote: > > 'if' syntax is: > IF <boolean_test> THEN <true_code> (ELSE <false_code>) END IF > You can also have any number of elsif <test> then <statements> between the then-part and the else-part. PS all keywords should be lower case. I also found it very handy to have a printed copy of refman2.html (just that, 25 pages, not necessarily the whole thing) when I first started. Pete
4. Re: NEW
- Posted by Dan Moyer <DANIELMOYER at prodigy.net> Mar 20, 2002
- 522 views
New wrote: <snip> > > I could use as many as you know. I am > > looking for tutorials for the Windows version and some tutorials for > > win32lib > and Derek responded: <snip> > Win32lib comes with many sample programs and a reasonable set of Docs. However, we probably should > create an annotated edition of all the samples plus "tips". My "RunDemos" creates an organized list of all the Win32Lib samples, with descriptions, allowing easy locating of function implementation & running & viewing code , and I'm working right now on improvements for it that will allow easier adding & removing of demos from its list of demos. It's included with Win32Lib, but there may be a more recent version at: http://www.rapideuphoria.com/wdemos.zip For tutorials on Win32Lib, try Wolfgang Fritz's very good one, at: http://www.king.igs.net/~wolfritz/tutor.htm Dan Moyer ----- Original Message ----- From: "Derek Parnell" <ddparnell at bigpond.com> To: "EUforum" <EUforum at topica.com> Sent: Tuesday, March 19, 2002 9:22 PM Subject: Re: NEW > > > > > I am new to programming with Euphoria. I just started 3/14 and I need > > > > some resources for good tutorials. > > As a first port of call, try http://www.rapideuphoria.com/abgte2.zip which is the "A Beginner's > Guide To Euphoria" > > > I could use as many as you know. I am > > looking for tutorials for the Windows version and some tutorials for > > win32lib > > Win32lib comes with many sample programs and a reasonable set of Docs. However, we probably should > create an annotated edition of all the samples plus "tips". > > > and tutorials that focus on "For" and "If". I am more used to perl > > you have our sympathy > > > and their fors and ifs are a lot different. > > 'for' sytax is: > FOR <loop_index> = <start> TO <end> (BY <incr>) DO <body> END FOR > > The FOR, TO, DO, and END FOR keywords are mandatory. <loop_index> is the *name* of a variable that > Euphoria sets and controls during the looping code. You cannot change its value at any time. The > trick to 'for' is that the loop index must not be already declared and its scope is restricted to > inside the loop. <start> is the initial value that the loop index receives and <end> is the last > value that it can have. The BY clause is optional. If omitted, <incr> is assumed to be 1. At the end > of each iteration and before your loop body code gets control, Euphoria adds the <incr> value to the > <loop_index>. If this cause the loop index to go beyond the <end> value, the loop is completed and > the next line of code after the END FOR is executed. Between the Do and END FOR, you can have any > number of statements, however some specific statements are not allowed (such as > procedure/function/constant/ etc...). > > 'if' syntax is: > IF <boolean_test> THEN <true_code> (ELSE <false_code>) END IF > > In other words the IF, THEN and END IF key words are mandatory. If you have an ELSE clause, it > must appear after the THEN clause and before the END IF statement. <boolean_test> must be an > expression that results in an atom; zero means the test failed, non-zero means the test succeeded. > <true_code> only gets executed if the test succeeded, and <false_code> only gets executed if the > test failed. There can be any number, including zero, statements in either the <true_code> and > <false_code>, however some specific statements are not allowed (such as procedure/function/constant/ > etc...). > > > > I would appreciate any suggestions you might have. > > Try the contributions section of www.rapideuphoria.com , there are hundreds of great ideas there. > > > Also, maybe an idea for a program that is some > > what useful and not to hard to develop. > > > > How about a text-based adventure game? > > --------- > Cheers, > Derek Parnell > ICQ# 7647806 > > > >
5. Re: NEW
- Posted by Joshua Silva <joshuasilva at att.net> Mar 20, 2002
- 570 views
This is a multi-part message in MIME format. ------=_NextPart_000_0013_01C1D03D.D3B32500 charset="iso-8859-1" I am not new at Euphoria. I just started programming in basic language and I am also trying to learn c++. If anyone knows how to use if & open command please tell me. it keeps saying syntax error. I even copy some stuff out of books. if you can give me any good tips I would appreciate it. ----- Original Message ----- From: Robsz2 at aol.com To: EUforum Sent: Tuesday, March 19, 2002 8:50 PM Subject: NEW Hello. I am new to programming with Euphoria. I just started 3/14 and I need some resources for good tutorials. I could use as many as you know. I am looking for tutorials for the Windows version and some tutorials for win32lib and tutorials that focus on "For" and "If". I am more used to perl and their fors and ifs are a lot different. I would appreciate any suggestions you might have. Also, maybe an idea for a program that is some what useful and not to hard to develop. Thank you. ------=_NextPart_000_0013_01C1D03D.D3B32500 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: 8bit <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.2713.1100" name=GENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=#ffffff> <DIV><FONT face=Arial size=2>I am not new at Euphoria. I just started programming in basic language and I am also trying to learn c++.</FONT></DIV> <DIV><FONT face=Arial size=2>If anyone knows how to use if & open command please tell me.</FONT></DIV> <DIV><FONT face=Arial size=2>it keeps saying syntax error.</FONT></DIV> <DIV><FONT face=Arial size=2>I even copy some stuff out of books.</FONT></DIV> <DIV><FONT face=Arial size=2>if you can give me any good tips I would appreciate it.</FONT></DIV> <BLOCKQUOTE dir=ltr style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px"> <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV> <DIV style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> <A title=Robsz2 at aol.com href="mailto:Robsz2 at aol.com">Robsz2 at aol.com</A> </DIV> <DIV style="FONT: 10pt arial"><B>To:</B> <A title=EUforum at topica.com href="mailto:EUforum at topica.com">EUforum</A> </DIV> <DIV style="FONT: 10pt arial"><B>Sent:</B> Tuesday, March 19, 2002 8:50 PM</DIV> <DIV style="FONT: 10pt arial"><B>Subject:</B> NEW</DIV> <DIV><BR></DIV><PRE>============ The Euphoria Mailing List ============ </PRE><FONT face=arial,helvetica><FONT size=2>Hello. <BR><BR> I am new to programming with Euphoria. I just started 3/14 and I need some resources for good tutorials. I could use as many as you know. I am looking for tutorials for the Windows version and some tutorials for win32lib and tutorials that focus on "For" and "If". I am more used to perl and their fors and ifs are a lot different. I would appreciate any suggestions you might have. Also, maybe an idea for a program that is some what useful and not to hard to develop. <BR><BR>Thank you.</FONT> <PRE>==^================================================================ This email was sent to: joshuasilva at att.net EASY UNSUBSCRIBE click here: <A href="http://topica.com/u/?b1dd66.b2RSwB">http://topica.com/u/?b1dd66.b2RSwB</A> Or send an email to: EUforum-unsubscribe at topica.com T O P I C A -- Register now to manage your mail! <A href="http://www.topica.com/partner/tag02/register">http://www.topica.com/partner/tag02/register</A> ------=_NextPart_000_0013_01C1D03D.D3B32500--
6. Re: NEW
- Posted by Kat <gertie at PELL.NET> Mar 20, 2002
- 518 views
On 20 Mar 2002, at 18:34, Joshua Silva wrote: > > I am not new at Euphoria. I just started programming in basic language and I > am > also trying to learn c++. If anyone knows how to use if & open command please > tell me. it keeps saying syntax error. I even copy some stuff out of books. if > you can give me any good tips I would appreciate it. I am confused. You are an experience Eu programmer, and you need help with "if", "&", and "open" in Basic and C++? Kat
7. Re: NEW
- Posted by Joshua Silva <joshuasilva at att.net> Mar 21, 2002
- 511 views
Thank you so mutch. ----- Original Message ----- From: "Ray Smith" <smithr at ix.net.au> To: "EUforum" <EUforum at topica.com> Subject: RE: NEW > > > Joshua Silva wrote: > > I am not new at Euphoria. I just started programming in basic language > > and I am also trying to learn c++. > > If anyone knows how to use if & open command please tell me. > > it keeps saying syntax error. > > I even copy some stuff out of books. > > if you can give me any good tips I would appreciate it. > > If you provide the code that isn't working with some more details > of exactly what your trying to do it will make it easier for people > to help you. > > Ray Smith > http://rays-web.com > > > >
8. Re: NEW
- Posted by Joshua Silva <joshuasilva at att.net> Mar 21, 2002
- 514 views
Do you have any links to download free c++ software? ----- Original Message ----- From: "Ray Smith" <smithr at ix.net.au> To: "EUforum" <EUforum at topica.com> Subject: RE: NEW > > > Joshua Silva wrote: > > I am not new at Euphoria. I just started programming in basic language > > and I am also trying to learn c++. > > If anyone knows how to use if & open command please tell me. > > it keeps saying syntax error. > > I even copy some stuff out of books. > > if you can give me any good tips I would appreciate it. > > If you provide the code that isn't working with some more details > of exactly what your trying to do it will make it easier for people > to help you. > > Ray Smith > http://rays-web.com > > > > >