From bab593a86bead14ec44ef119c744a12a5ae02fa1 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sun, 6 Jul 2025 21:42:09 +1000 Subject: [PATCH] Typo fix + start of error handling --- py/m.py | 2 +- src/noether/lib/err.nim | 1 + src/noether/parser/err.nim | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 src/noether/lib/err.nim create mode 100644 src/noether/parser/err.nim diff --git a/py/m.py b/py/m.py index e2b60c5..9576f4c 100644 --- a/py/m.py +++ b/py/m.py @@ -2,7 +2,7 @@ import sys import readline -from noether.math import * +from noether.lib.math import * from noether.cli import * diff --git a/src/noether/lib/err.nim b/src/noether/lib/err.nim new file mode 100644 index 0000000..ec4c848 --- /dev/null +++ b/src/noether/lib/err.nim @@ -0,0 +1 @@ +proc echoErrorHeader(): = diff --git a/src/noether/parser/err.nim b/src/noether/parser/err.nim new file mode 100644 index 0000000..9cc5a73 --- /dev/null +++ b/src/noether/parser/err.nim @@ -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 + +