int *L; /* Aaah, C, the language where an int is a pointer and a pointer is an int */ int *m; for (L = *tabs[10]; L; L = L*) { *m[ *L[1] ] = *L[2]; }; /* But I think this should be clearer : */ int *L; /* Aaah, C, the language where an int is a pointer and a pointer is an int */ int *m; for (L = *tabs[10]; L; L = L*) { int index = *L[1]; int value = *L[2]; *m[ index ] = value; }; #### perl -MHTTP::Daemon -MHTTP::Response -MLWP::Simple -e ' ; # The $d = new HTTP::Daemon and fork and getprint $d->url and exit;#spider ($c = $d->accept())->get_request(); $c->send_response( new #in the HTTP::Response(200,$_,$_,qq(Just another Perl hacker\n))); ' # web