Computer Science Canada End instruction |
Author: | Leyto24 [ Tue Nov 03, 2009 8:49 am ] |
Post subject: | End instruction |
Hi! I am trying to make a little program, but I would like to know what is the instruction to stop the execution of a program in Turing. Can someone help me please? Thanks, Leyto24 |
Author: | Tony [ Tue Nov 03, 2009 9:07 am ] |
Post subject: | RE:End instruction |
return or quit, depending on where you are in the program. |
Author: | Chaoskiller [ Tue Nov 03, 2009 10:54 pm ] |
Post subject: | RE:End instruction |
wouldnt exit when be another way to exit if you are in a loop? |
Author: | Tony [ Tue Nov 03, 2009 11:12 pm ] |
Post subject: | RE:End instruction |
Yes. Reaching the end of the source file with the use of exits will also finish the program. |
Author: | Leyto24 [ Wed Nov 04, 2009 9:05 am ] |
Post subject: | Re: End instruction |
thanks dude |