Subset of C language with tree interpreter and bytecode compiler + VM.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 

18 рядки
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: