commit b36af6c60161ac2731d6008b07b93f15edc8e082 Author: Luke Betteridge Date: Thu Mar 19 21:02:20 2026 +0000 initial commit diff --git a/Hello World.c b/Hello World.c new file mode 100644 index 0000000..a8cf732 --- /dev/null +++ b/Hello World.c @@ -0,0 +1,8 @@ +#include + +int main() { +// This is a C comment + printf("Hello World!\n"); + printf("This is a new line!"); + return 0; +}