2020-11-27 23:58:58 -05:00
|
|
|
/* hello.c -- hello there
|
|
|
|
** Copyright (c) 2020 Renaud Fivet
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2020-12-02 00:03:38 -05:00
|
|
|
int main( void) {
|
2020-11-27 23:58:58 -05:00
|
|
|
puts( "hello, world") ;
|
|
|
|
return EXIT_SUCCESS ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* end of hello.c */
|