Jump to content

Microsoft C++


Tidus

Recommended Posts

OK, I hadn't seen this post.

Well, well, well... I guess it's hopeless :lol:

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) :angry:

Link to comment
Share on other sites

OK, I hadn't seen this post.

Well, well, well... I guess it's hopeless  :lol:

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)  :angry:

Hahaha... I started with

 

SCREEN 12

PRINT "Hello World"

 

On QBASIC.

Link to comment
Share on other sites

OK, I hadn't seen this post.

Well, well, well... I guess it's hopeless  :ph34r:

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)  :D

//"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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...