Typo fix + start of error handling
This commit is contained in:
parent
1181ea9743
commit
bab593a86b
3 changed files with 10 additions and 1 deletions
2
py/m.py
2
py/m.py
|
|
@ -2,7 +2,7 @@
|
||||||
import sys
|
import sys
|
||||||
import readline
|
import readline
|
||||||
|
|
||||||
from noether.math import *
|
from noether.lib.math import *
|
||||||
from noether.cli import *
|
from noether.cli import *
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
1
src/noether/lib/err.nim
Normal file
1
src/noether/lib/err.nim
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
proc echoErrorHeader(): =
|
||||||
8
src/noether/parser/err.nim
Normal file
8
src/noether/parser/err.nim
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
#[ Error codes and messaging directly associated with
|
||||||
|
| nlParser and its procedures is written here.
|
||||||
|
| General error functionality is in src/noether/lib/err.nim
|
||||||
|
]#
|
||||||
|
|
||||||
|
import parser
|
||||||
|
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue