User:Mkalte666: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
[code]
<syntaxhighlight lang="cpp">
#include <iostream>
#include <iostream>
#define AGE 14
#define AGE 14
Line 7: Line 7:
   return NULL;
   return NULL;
}
}
[/code]
 
</syntaxhighlight>

Latest revision as of 10:14, 10 September 2012

#include <iostream>
#define AGE 14

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