fix readme
This commit is contained in:
parent
0562659220
commit
f20643d198
1 changed files with 3 additions and 1 deletions
|
@ -9,6 +9,8 @@ This library can evaluate any types of expressions: math expression, logic expre
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
Full example: [/example/main.go](/example/main.go)
|
||||||
|
|
||||||
```go
|
```go
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
l := lexpr.New(lexpr.WithDefaults())
|
l := lexpr.New(lexpr.WithDefaults())
|
||||||
|
@ -83,7 +85,7 @@ result52, err := l.OneResult(ctx, `10 >= 5 || 10 <= 5`)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
log.Println("Result 5-2:", result52) // Output: 1
|
log.Println("Result 5-2:", result52) // Output: 0
|
||||||
result53, err := l.OneResult(ctx, `10 >= 5 && 10 <= 5`)
|
result53, err := l.OneResult(ctx, `10 >= 5 && 10 <= 5`)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
|
|
Loading…
Reference in a new issue