>>3
Are saying, that all mathematicians are retards?
Name:
Anonymous2011-01-04 3:00
>>5
One can even conjecture that Lisp owes its survival specifically to the fact that its programs are lists, which everyone, including me, has regarded as a disadvantage. -- John McCarthy
>>7
A mathematician, if anyone, should understand simplicity and accessibility.
Name:
Anonymous2011-01-04 3:27
>>9
Why then a stereotypical mathematician is a socipathic autist, who loves uniformity. This definition, of course, excludes jewish mathematicians, as jews pursue math because of their religious views.
(define-syntax for
(syntax-rules (in collect if do)
((for var in list collect body) (map (lambda (var) body) list))
((for var in list collect body if pred) (map (lambda (var) body) (filter pred list)))
((for var in list do body) (for-each (lambda (var) body)))
((for var in list do body if pred) (for-each (lambda (var) body) (filter pred list)))))
(for x in '(1 2 3 4 5) collect (* x x)) ; => '(1 4 9 16 25)
(for x in '(1 2 3 4 5) collect (* x x) if even?) ; => '(4 16)
(for x in '(1 2 3 4 5) do (display x)) ; => #<void>, output: 12345
(for x in '(1 2 3 4 5) do (display x) if odd?) ; => #<void>, output: 135
But I use filter and map, because I'm not a faggot.