Skip to content
/ go-el Public

A simple expression language created with gocc

License

Notifications You must be signed in to change notification settings

cbuschka/go-el

Repository files navigation

go-el

A simple expression language created with gocc

Usage

package main

import (
	"github.com/cbuschka/go-el"
	"fmt"
)

func main() {
	expr := el.MustCompile("true")
	result, err := expr.Evaluate()
	if err != nil {
		panic(err)
	}
	fmt.Printf("Result is '%v'\n", result)
}

see cmd/example/main.go

License

Copyright (c) 2021 by Cornelius Buschka.

MIT

About

A simple expression language created with gocc

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published