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