fork download
  1. (define (square)
  2. (lambda (x)
  3. (* x x)))
  4.  
  5. (define my-sq (square))
  6.  
  7. (print (my-sq 3))
Runtime error #stdin #stdout 0.03s 4176KB
stdin
Standard input is empty
stdout
Standard output is empty