braveandtrue

https://www.braveclojure.com/
Binny Zupnick 2020-06-20T08:40:27.014700Z

I'm just starting the pegthing project but when I try compiling (ns pegthing.core   `(require [clojure.set :as set])`   `(:gen-class))`

Binny Zupnick 2020-06-20T08:40:54.015200Z

I'm getting Syntax error macroexpanding clojure.core/ns at (pegthing\core.clj:1:1). ((require [clojure.set :as set]) (:gen-class)) - failed: Extra input spec: :clojure.core.specs.alpha/ns-form

Binny Zupnick 2020-06-20T08:41:10.015600Z

If I get rid of (require [clojure.set :as set]) , though, it runs as expected

Binny Zupnick 2020-06-20T08:41:15.015800Z

has anyone ran into this?

2020-06-20T12:11:47.016500Z

Inside (ns) you need (:require...) not (require...)