mirror of
https://github.com/boostorg/build.git
synced 2026-02-01 08:22:15 +00:00
13 lines
183 B
C++
13 lines
183 B
C++
/* (C) Copyright Rene Rivera, 2003.
|
|
**
|
|
** See accompanying license for terms and conditions of use.
|
|
*/
|
|
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Hello!\n";
|
|
return 1;
|
|
}
|