Skip to content

JIK STEM navigation

aegwenia/jik/hidden-closure-report

Frontier Unlock 315 Ideal 330 CC0 1.0

Hidden inputs: captured closure

A private multi-input example proving lexical capture across repeated calls.

Acquire to open

Theory, examples, assessment, and private test answers stay inside the acquired repository copy.

Log in to acquire

Public source

Released under CC0 by the five-year publication rule.

(define (closure-report start step)
  (let [[advance (lambda [value] (+ value step))]]
    [(funcall advance start)
     (funcall advance (funcall advance start))]))