fork download
  1. ; 1.1.1 Expressions
  2.  
  3. ; Evaluates to 486
  4. 486
  5.  
  6. ; Let's display it
  7. (display 486)
  8. (newline)
  9.  
  10. ; Other ways to express it
  11. (display (+ 137 349))
  12. (newline)
  13.  
  14. (display (+ (* 3 (+ (* 2 4) (+ 3 5)))(+ (- 10 7) 6)))
Success #stdin #stdout 0.02s 4176KB
stdin
Standard input is empty
stdout
486
486
57