Files
first-repo/helloworld.c
2025-02-06 12:54:34 +02:00

8 lines
91 B
C

#include <stdio.h>
int main() {
printf("hello, ");
printf("world");
printf("\n");
}