User:Mkalte666: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Created page with "#include <iostream> #define AGE 14 int main() {")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
<syntaxhighlight lang="cpp">
#include <iostream>
#include <iostream>
#define AGE 14
#define AGE 14


int main() {
int main() {
  std::cout << AGE << endl;
  return NULL;
}
</syntaxhighlight>

Latest revision as of 10:14, 10 September 2012

#include <iostream>
#define AGE 14

int main() {
   std::cout << AGE << endl;
   return NULL;
}