Subset of C language with tree interpreter and bytecode compiler + VM.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

18 satır
256 B

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