Skip to content

Instantly share code, notes, and snippets.

@oneup
Created July 15, 2009 20:27
Show Gist options
  • Save oneup/147960 to your computer and use it in GitHub Desktop.
Save oneup/147960 to your computer and use it in GitHub Desktop.
void *c_core(void*root){
//evaluates root (scripting language with byte input)
return null;
}
/* // eg
c_core(); // crash / null -> undefined
c_core(null); //
c_core("puts hello world"); // scan for \0, puts (report) findings
c_core("console"); // initialize screen and open console
*/
int main(int argc, char **argv) {
c_core(argv); // good luck
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment