Name: Anonymous 2010-10-16 17:23
I can see why you would want static variables in functions but what's the point of static globals?
#include <stdio.h>
struct x { long x; };
int main(int argc, char *argv[])
(
struct x x;
x.x = strtol(argv[i]);
if (x.x) goto x;
return 0;
x:
return 1;
}
(defun f (car) (car car))