Subset of C language with tree interpreter and bytecode compiler + VM.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

18 rindas
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: