Typo fix + start of error handling

This commit is contained in:
Emile Clark-Boman 2025-07-06 21:42:09 +10:00
parent 1181ea9743
commit bab593a86b
3 changed files with 10 additions and 1 deletions

View file

@ -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
View file

@ -0,0 +1 @@
proc echoErrorHeader(): =

View 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