2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00
Files
build/v2/example/hello/hello.cpp
Vladimir Prus 9f16d88c6f Added 'hello, world' example.
[SVN r15896]
2002-10-11 11:49:35 +00:00

8 lines
79 B
C++

#include <iostream>
int main()
{
std::cout << "Hello!\n";
return 1;
}