added a function

This commit is contained in:
VorpalMouse 2026-04-24 15:50:32 +00:00
parent e6ec99ad5d
commit d55a98d7a9

View file

@ -1,6 +1,11 @@
#include <stdio.h>
static void hello() {
printf("hello from a function!\n");
}
int main() {
printf("Hello, World!\n");
hello();
return 0;
}