1
0

added more code

This commit is contained in:
Andrew W
2022-08-28 16:12:16 -05:00
parent 5a2894ed1b
commit 7dabaef6f6
2345 changed files with 1343530 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main(int argc, char const *argv[])
{
printf("Hello, World!\n");
if (argc != 2)
{
printf("An error has ocurred no input file was given.\n");
return 1;
}
printf ("So this line won't print without an argument.\n");
return 0;
}