79593892

Date: 2025-04-26 12:05:47
Score: 1
Natty:
Report link

I found the following solution, which works in my use-case:

(funcall
 (lambda (x)
   (let ((a 2))
     (declare (special a))
     (funcall
      (lambda (x)
        (declare (special a))
        (+ a (* x 3)))
      x)))
 3)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Orm Finnendahl