Page 2 of 2

Posted: Thu Mar 29, 2007 11:22 am
by shaukmio
i was wondering how to copy a code from this forum in to qbasic so if you could tell me how it would be much appreciated

Posted: Thu Mar 29, 2007 2:35 pm
by Louise
shaukmio wrote:i was wondering how to copy a code from this forum in to qbasic so if you could tell me how it would be much appreciated
usually you can just cut and past text in to the compiler. Have you tried this?

Louise

Posted: Thu Mar 29, 2007 4:49 pm
by Craig_Bridge
You may have to cut and paste the text using your favorite text editor and then tell qbasic to run the file. There maybe some file extension assumptions. "help save" should give you some hints at how to save a simple program you type in such as a one line "hello world" program into a text file. "help run" should give you hints at how to specify a file to load and interpret.

print "hello world"

Basic is was designed to provide help and encouraging you to try things.