fork download
  1. (defparameter *v* (vector 1 2 3 4 5))
  2.  
  3. (print (count-if
  4. #'(lambda (x) (> x 3))
  5. *v*))
Success #stdin #stdout 0.02s 10584KB
stdin
Standard input is empty
stdout
2