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/stack.go | |
parent | f819828f6debae4f68ec0d6060e08def1675ba5e (diff) |
Diffstat (limited to 'example/math_expression/stack.go')
-rw-r--r-- | example/math_expression/stack.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/math_expression/stack.go b/example/math_expression/stack.go index d690f4e..3f610ad 100644 --- a/example/math_expression/stack.go +++ b/example/math_expression/stack.go @@ -2,7 +2,7 @@ package main // Simple lexem stack implementation. -import "go.neonxp.ru/unilex" +import "neonxp.ru/go/unilex" type lexemStack []unilex.Lexem |