2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-19 16:12:14 +00:00
Files
build/example/hello_c/hello.c
2025-02-02 16:57:22 -06:00

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[]