Re: Library like "infix"...

2021-05-17 Thread Blake Watson
On Mon, May 17, 2021 at 10:18 AM Justin Smith wrote: > unless this is an exercise in learning clojure, why not use an existing > calculator parser? eg. > https://inst.eecs.berkeley.edu/~cs164/sp05/ta/calculator/Parser.java for > a random example found with a quick google > > That is the question,

Re: Library like "infix"...

2021-05-17 Thread Justin Smith
unless this is an exercise in learning clojure, why not use an existing calculator parser? eg. https://inst.eecs.berkeley.edu/~cs164/sp05/ta/calculator/Parser.java for a random example found with a quick google On Sat, May 15, 2021 at 3:23 PM Blake Watson wrote: > Hello, > > I've got a situation

Library like "infix"...

2021-05-15 Thread Blake Watson
Hello, I've got a situation where I want to allow users some modest calculation ability, and I've gone through various evolutions of possibilities, like letting them put in raw Clojure code (that I will restrict at some point), to (heh) using POI to let them use Excel to specify possibilities (whi