Subset of C language with tree interpreter and bytecode compiler + VM.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

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