fork download
  1. (define (test fn a b c)
  2. (fn a b c) )
  3. (display (test + 1 2 3))
  4. (newline)
  5. (display (test - 5 1 1))
Success #stdin #stdout 0.03s 4132KB
stdin
Standard input is empty
stdout
6
3