Subset of C language with tree interpreter and bytecode compiler + VM.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

18 rader
194 B

#!./main
#include <stdio.h>
int foo(void)
{
return 42;
}
int main(int argc, char **argv)
{
printf("hello, world %d\n", foo());
return 0;
}
// Local Variables:
// mode: c
// End: