Forgive me Greg for I have sinned.

This commit is contained in:
Luke Renaud 2021-09-06 18:15:26 -07:00
commit 2aea1cf664
4 changed files with 99 additions and 0 deletions

10
hello-world.cpp Executable file
View file

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