Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

8 řádky
230 B

  1. (define (empty-function-body-test))
  2. ;; test that arguments to apply are only evaled once
  3. (define counter 0)
  4. (assert (= (apply (lambda (x) x) (begin (mutate! counter (+ 1 counter)) (list +)))
  5. +))
  6. (assert (= counter 1))