Computer Science Canada

Stupid and probably simple question...I jsut forget

Author:  rcbhs [ 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.

Author:  Mackie [ 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.

Author:  [Gandalf] [ Wed Apr 30, 2008 8:45 pm ]
Post subject:  RE:Stupid and probably simple question...I jsut forget

code:
put "fjdkalfjlkdsajfkldjlfkjsadlfjlkasdf",
    "fjdkalfjlkdsajfkldjlfkjsadlfjlkasdf",
    "fjdkalfjlkdsajfkldjlfkjsadlfjlkasdf"

Author:  rcbhs [ 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.

Author:  rcbhs [ 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....

Author:  Sean [ 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.


: