Skip to content

Instantly share code, notes, and snippets.

@tangentstorm
Created February 25, 2013 16:42
Show Gist options
  • Save tangentstorm/5031152 to your computer and use it in GitHub Desktop.
Save tangentstorm/5031152 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
void stepIntoMe()
{
cout << "inside the subroutine" << endl;
}
int main()
{
cout << "Hello world!" << endl;
cout << "one" << endl;
cout << "two" << endl;
cout << "three" << endl;
for (int i = 0; i < 10; ++i) {
cout << i << endl;
}
stepIntoMe();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment