Forgive me Greg for I have sinned.

This commit is contained in:
Luke 2021-09-06 18:15:26 -07:00
commit 459f0b41f7
5 changed files with 131 additions and 0 deletions

9
hello-world.cpp Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env sheclang
#include <stdio.h>
int main(int argc, char *argv[]) {
printf("Hello World!\n");
return 0;
}