Clojure-Intro-Course / clojure-intro-class

NOTE: This repository is obsolete. Was: A pilot project to use Clojure for introductory computer science courses at the University of Minnesota - Morris
20 stars 3 forks source link

Is this the intended error? #100

Closed leek5pin closed 8 years ago

leek5pin commented 8 years ago

(def )

Syntax error: Too few arguments to def.

I only ask because the wording seems less descriptive than our other arity errors.

elenam commented 8 years ago

This is a macro, and the message is returned from Clojure. We don't have much control over it.

leek5pin commented 8 years ago

Thanks!