mirror of
https://github.com/boostorg/build.git
synced 2026-01-19 16:12:14 +00:00
16 lines
256 B
C
16 lines
256 B
C
/*
|
|
Copyright 2025 René Ferdinand Rivera Morell
|
|
Distributed under the Boost Software License, Version 1.0.
|
|
See https://www.bfgroup.xyz/b2/LICENSE.txt
|
|
*/
|
|
|
|
// tag::source[]
|
|
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
puts("Hello!\n");
|
|
return 0;
|
|
}
|
|
// end::source[]
|