2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-25 18:12:12 +00:00
Files
build/example/hello/hello.cpp
Vladimir Prus 8222a10699 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;
}