indent1.q2 240 B

123456789101112131415
  1. define xx (15 + 5)
  2. # This is a comment.
  3. define (mx a b)
  4. if (a > b) a b
  5. format #t "{~s}{~s}~%"
  6. vector 'a 'b
  7. ! yy
  8. mx 13
  9. 14
  10. list xx yy 99
  11. ! zz (yy + 100)
  12. zz + 100
  13. 'f
  14. # Output: {#(a b (20 14 99) 214)}{f}