CAP/MiniC/TP06/tests/provided/basic-functions/lib/_hello.c

6 lines
70 B
C
Raw Normal View History

2024-10-06 19:58:11 +02:00
#include <stdio.h>
int print_hello() {
printf("Hello, world!\n");
}