Author |
Message |
rcbhs
|
Posted: Wed Apr 30, 2008 8:41 pm Post subject: Stupid and probably simple question...I jsut forget |
|
|
So, If I want to just copy and paste a huge hunk of text into a put statement, how do I do so properly?
When I copy and paste this paragraph it puts it into turing like line by line so half of the stuff is variables, I dunno if you get what I'm saying but if ya do, some help would be nice. |
|
|
|
|
|
Sponsor Sponsor
|
|
|
Mackie
|
Posted: Wed Apr 30, 2008 8:45 pm Post subject: RE:Stupid and probably simple question...I jsut forget |
|
|
You should try saving it to a text file and reading it form there. A lot easier. |
|
|
|
|
|
[Gandalf]
|
Posted: Wed Apr 30, 2008 8:45 pm Post subject: RE:Stupid and probably simple question...I jsut forget |
|
|
code: | put "fjdkalfjlkdsajfkldjlfkjsadlfjlkasdf",
"fjdkalfjlkdsajfkldjlfkjsadlfjlkasdf",
"fjdkalfjlkdsajfkldjlfkjsadlfjlkasdf" |
|
|
|
|
|
|
rcbhs
|
Posted: Wed Apr 30, 2008 8:54 pm Post subject: Re: Stupid and probably simple question...I jsut forget |
|
|
Thanks Gandalf, I don't remember much from my programming course last semester, got bored and figured I would make a mini turing project to hand in for english. |
|
|
|
|
|
rcbhs
|
Posted: Wed Apr 30, 2008 9:07 pm Post subject: Re: Stupid and probably simple question...I jsut forget |
|
|
Lol, nvm I totally forgot about loops.... |
|
|
|
|
|
Sean
|
Posted: Thu May 01, 2008 6:19 am Post subject: Re: Stupid and probably simple question...I jsut forget |
|
|
Turing: |
loop
%Your code here
end loop
|
This is the format to use loops. |
|
|
|
|
|
|