taratata Posted January 30, 2004 Share Posted January 30, 2004 OK, I hadn't seen this post.Well, well, well... I guess it's hopeless Tidus, instead of an emulator, consider beginning with a "HelloWorld" type program (a program whose only purpose is to write "HelloWorld" on screen, or even only on a console) Link to comment Share on other sites More sharing options...
Agozer Posted January 30, 2004 Share Posted January 30, 2004 OK, I hadn't seen this post.Well, well, well... I guess it's hopeless Tidus, instead of an emulator, consider beginning with a "HelloWorld" type program (a program whose only purpose is to write "HelloWorld" on screen, or even only on a console) Hahaha... I started with SCREEN 12PRINT "Hello World" On QBASIC. Link to comment Share on other sites More sharing options...
boofnasty Posted January 31, 2004 Share Posted January 31, 2004 OK, I hadn't seen this post.Well, well, well... I guess it's hopeless Tidus, instead of an emulator, consider beginning with a "HelloWorld" type program (a program whose only purpose is to write "HelloWorld" on screen, or even only on a console) //"HelloWorld"#include <iostream> using std::cout;using std::endl; int main(){ cout << "HelloWorld" << endl << endl; return 0; } try that out Link to comment Share on other sites More sharing options...
Agozer Posted January 31, 2004 Share Posted January 31, 2004 Nice little C proggy. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now