Name: Anonymous 2007-11-27 20:52
How would I do this in lisp?
sub test { return (1, 2, 3) }
my ($a, $b, $c) = test();
sub test { return (1, 2, 3) }
my ($a, $b, $c) = test();
#include <stdio.h>
int main(void) {
int x;
printf("%p\n", (void *)&x);
return 0;
}