Thursday, November 14, 2013

C++ "hello world" (test syntax highlight)

#include <iostream>
int main()
{
std::cout << "hello world" << std::endl;

return 0;
}

No comments:

Post a Comment