Initial import

This commit is contained in:
romenskiy 2025-06-19 11:12:22 +03:00
commit 13d1a2de0a
3 changed files with 18 additions and 0 deletions

8
main.c Normal file
View file

@ -0,0 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
puts("Hello, World!");
return 0;
}