Computer Science Canada So you're looking for help? check here first |
Author: | Tony [ Sat Jan 10, 2004 12:23 am ] |
Post subject: | |
a nice collection of links to most basic tutorials way to go.+Bits make sure to check out [Turing Tutorials] and [Source Code] for additional info. Since if you ask a question that was already answered a number of times, you'd probably just be refered to the tutorial anyways |
Author: | shorthair [ Sun Feb 01, 2004 7:40 pm ] |
Post subject: | |
This is the first time ive seen this , never looked in her e, really great just , you just helped me find out some infor on printing , thakns for the eawsome tutorial keep up hte good work + BITS , |
Author: | AsianSensation [ Sun Feb 15, 2004 9:41 pm ] |
Post subject: | |
also, remember, as recneps and many other people have pointed out, always check with your Turing Reference manual first. Many question, if not the majority, depends on that F10 button and some creativity on your part. |
Author: | the_short1 [ Tue Feb 24, 2004 7:56 am ] |
Post subject: | |
yea... Good job Thug this should(hopfully) limit some in our help.... like common.... almost 10 000 posts........ thats CRZY +3 bits |
Author: | kingpin [ Thu Jun 10, 2004 12:15 am ] |
Post subject: | |
heres a simple one i cant figure out whats the command to end your program... quit doen'st work... WHAT IS IT! |
Author: | Paul [ Thu Jun 10, 2004 12:25 am ] | ||
Post subject: | |||
its
|
Author: | the_short1 [ Thu Jun 10, 2004 8:19 am ] | ||
Post subject: | |||
no.. return DOES NOT WORK return is to end a proc prematurely
|
Author: | beard0 [ Thu Jun 10, 2004 9:41 am ] | ||
Post subject: | |||
This will end your program:
|
Author: | Tony [ Thu Jun 10, 2004 11:24 am ] |
Post subject: | |
haha asset false will crash the program and return does work... you just need to put it in the right place HoltSoft wrote: A return statement terminates the procedure (or main program) in which it appears. |
Author: | the_short1 [ Thu Jun 10, 2004 2:51 pm ] | ||||
Post subject: | |||||
i think by main program they mean if u put return in a turing UNIT to end it... .. meh.. ill try that..ok... just tried it... return does end the program prematurely! but it does not go to LAST line of code..... try this out..
that is why i wouln't use return to end a program.... the WINDOW WONT CLOSE! instead u can just use a boolean variable!
as u can see..... u just make that boolean variable false... and have exit when boleanvarname = false in all ur loopz or w/e... |
Author: | Paul [ Thu Jun 10, 2004 5:46 pm ] | ||
Post subject: | |||
kingpin wrote: whats the command to end your program... Well, "return" certainly ends my program.
Note it doesn't print paul |