Author |
Message |
Archi
|
Posted: Sat Jun 21, 2003 11:52 pm Post subject: Calling a new procedure within a procedure?? |
|
|
How can I call a new procedure while currently in a procedure? |
|
|
|
|
|
Sponsor Sponsor
|
|
|
krishon
|
Posted: Sun Jun 22, 2003 10:31 am Post subject: (No subject) |
|
|
um...just do it normally...write out the procedure at the top and then call it..u just need to order them correctly, otherwise it won't work |
|
|
|
|
|
Mephi
|
Posted: Sun Jun 22, 2003 1:38 pm Post subject: (No subject) |
|
|
yea make sure the one being called is before the one calling it |
|
|
|
|
|
Andy
|
Posted: Mon Jun 23, 2003 3:41 pm Post subject: (No subject) |
|
|
ya turing's gay, it won't let u call on a proc unless its defined before the section where u activate it |
|
|
|
|
|
Catalyst
|
Posted: Mon Jun 23, 2003 3:46 pm Post subject: (No subject) |
|
|
theres always forwards as in
code: | forward proc One (x:int)
...
body proc One (x:int)
put x
end One |
|
|
|
|
|
|
Andy
|
Posted: Mon Jun 23, 2003 3:48 pm Post subject: (No subject) |
|
|
whoa cool, thnx catalyst |
|
|
|
|
|
AsianSensation
|
Posted: Mon Jun 23, 2003 3:51 pm Post subject: (No subject) |
|
|
whoa..... didn't know turing could do that, thought only c++ could.....man, this could be so useful for my game.....
anyways, thanks catalyst |
|
|
|
|
|
Andy
|
Posted: Mon Jun 23, 2003 4:00 pm Post subject: (No subject) |
|
|
ya u could've made ur mario worms way better... but oh well its still good |
|
|
|
|
|
Sponsor Sponsor
|
|
|
|