A small library to evaluate jexl expressions in Go
Get the pacakge like so
go get github.com/manfromth3m0oN/jexl-go
Then import the package and call Eval()
import "github.com/manfromth3m0oN/jexl-go"
jexlExpr := "6 * 12 + 5 / 2.6"
eval, err := jexl.Eval(jexlExpr)