fork download
  1. (define (s a b)
  2. (+ (* a a) (* b b))
  3. )
  4.  
  5. (display (s 1 2))
  6.  
Success #stdin #stdout 0.03s 4176KB
stdin
Standard input is empty
stdout
5