diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-11 01:52:47 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-11 01:52:47 +0300 |
commit | a27b9d37c6d238432fedad019b0577d941a699da (patch) | |
tree | 6894c2f29682a8208d9e2b6128f4fa73a5623dc3 /example/math_expression/main.go | |
parent | f819828f6debae4f68ec0d6060e08def1675ba5e (diff) |
Diffstat (limited to 'example/math_expression/main.go')
-rw-r--r-- | example/math_expression/main.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/example/math_expression/main.go b/example/math_expression/main.go index 5cabaa6..b89a28b 100644 --- a/example/math_expression/main.go +++ b/example/math_expression/main.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "go.neonxp.ru/unilex" + "neonxp.ru/go/unilex" ) const ( @@ -14,7 +14,6 @@ const ( ) func main() { - l := unilex.New("10 * (20.0 + 30.0)") go l.Run(lexExpression) // Start lexer |