Adding program folder...

This commit is contained in:
Ognjen Milan Robovic 2023-11-13 21:04:20 -05:00
parent 0f5b125a42
commit f10547203f
6 changed files with 7 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

7
program/hello_world.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main (void) {
puts ("Hello world!");
return (0);
}