#include #include void show_str(char *s) { //|--> printf("%s", s); //<--| /*-->| f = eval("sys.stdout.write"); f(s); |<--*/ } void show_int(int v) { //|--> printf("%d", v); //<--| /*-->| f = eval("int") show_str( str( f(v) ) ); |<--*/ } /*-->| void atoi(char *s) { return eval(s) } |<--*/ int main(int argc, char **argv) { int v = 0, i; for (i=1; i