Hello Clara Gurus, I'm a newbie and just getting started with Clara Rules and planning to use it with Java. I'm getting an error when trying to run the code. `ExceptionInInitializerError: Syntax error compiling at (example/shopping.clj:2:3). clara.rules.accumulators` I'm attaching the project source for your reference. Could you please help. Please install Maven. Go to your project root directory and to compile the project execute `mvn -q compile` To run the code `mvn -q exec:java -Dexec.mainClass=example.ClaraExampleMain`
you have a syntax error in the import clause, there are ))) on the second row. should be )) (ns example.shopping (:import (example Customer Promotion Order)) (:require [clara.rules.accumulators :as acc] [clara.rules :refer :all])) like so
Thanks a Lot Linus for your help and support. Highly appreciate your time and effort for spotting this out. It works fine now.