Created
July 18, 2013 23:48
-
-
Save dherman/6034055 to your computer and use it in GitHub Desktop.
A lightweight implementation of node.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() { | |
int *p = 0; | |
char line[1024]; | |
printf("> "); | |
fgets(line, 1024, stdin); | |
*p = 12; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment