C compiler with embedded metalanguage.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 regels
551 B

funfn(int a, int b, int c, int d, char *e)
{
if (a) {
print();
return b;
}
if (b) {
int localfn() {
return a;
}
exit(c);
}
if (d) {
__builtin_return( null );
}
return c;
}
fn() {
print("whoa");
}
fn2() {
if (1)
return 2;
}
main() {
malloc(10);
nonMalloc(20);
fn();
funfn(1,2,3,4,"hey");
}