exam2.4.1

296阅读 0评论2011-12-05 maunix
分类:LINUX

  1. ;; mht created on Nov 8, 2011

  2. ;; Errors
  3. ;(+ (10) 20)
  4. ;; to produce : function call (10) : expected a name after an open parentesis, but found a number

  5. ;(10 + 20)
  6. ;; to produce : function call (10 : expected a name after an open parenthesis, but found a number

  7. (+ +)
  8. ;; to produce : +: expectes argument of type <number>; given +
上一篇:exam2.3.3
下一篇:exam2.4.2