Extremely basic first crack at implementing djb's redo.

And a test program.
This commit is contained in:
Avery Pennarun 2010-11-12 05:24:46 -08:00
commit a51764c907
13 changed files with 305 additions and 0 deletions

7
hello.c Normal file
View file

@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("hello, world!\n");
return 0;
}