Skip to content

Instantly share code, notes, and snippets.

@mkroman
Forked from anonymous/gist:668531
Created November 9, 2010 00:53
Show Gist options
  • Save mkroman/668547 to your computer and use it in GitHub Desktop.
Save mkroman/668547 to your computer and use it in GitHub Desktop.
#include <iostream>
void blablabla();
using namespace std;
int main() {
blablabla();
cin.get();
return 0;
}
void blablabla() {
cout << "blabla" << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment