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. |
|
|
|
|
![](images/spacer.gif) |
Sponsor Sponsor
![Sponsor Sponsor](templates/subSilver/images/ranks/stars_rank5.gif)
|
|
![](images/spacer.gif) |
Mackie
![](http://compsci.ca/v3/uploads/user_avatars/217548454cee912ae1202.png)
|
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. |
|
|
|
|
![](images/spacer.gif) |
[Gandalf]
![](http://compsci.ca/v3/uploads/user_avatars/189297994e4c716fec7f1.png)
|
Posted: Wed Apr 30, 2008 8:45 pm Post subject: RE:Stupid and probably simple question...I jsut forget |
|
|
code: | put "fjdkalfjlkdsajfkldjlfkjsadlfjlkasdf",
"fjdkalfjlkdsajfkldjlfkjsadlfjlkasdf",
"fjdkalfjlkdsajfkldjlfkjsadlfjlkasdf" |
|
|
|
|
|
![](images/spacer.gif) |
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. |
|
|
|
|
![](images/spacer.gif) |
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.... |
|
|
|
|
![](images/spacer.gif) |
Sean
![](http://compsci.ca/v3/uploads/user_avatars/47413941748406f441f83e.png)
|
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. |
|
|
|
|
![](images/spacer.gif) |
|