From 3558e9797ac4169e187729b4781fdc4df1f4a138 Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Sat, 14 Dec 2024 00:20:11 +0800 Subject: [PATCH] Updated importation method on standard library. --- modules/core@1.0.0/src/array.n8 | 2 +- modules/core@1.0.0/src/crypt.n8 | 2 +- modules/core@1.0.0/src/env.n8 | 2 +- modules/core@1.0.0/src/glfw.n8 | 2 +- modules/core@1.0.0/src/io.n8 | 2 +- modules/core@1.0.0/src/math.n8 | 2 +- modules/core@1.0.0/src/ml.n8 | 2 +- modules/core@1.0.0/src/reflect.n8 | 2 +- modules/core@1.0.0/src/sys.n8 | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/core@1.0.0/src/array.n8 b/modules/core@1.0.0/src/array.n8 index 9bf6073..fa8d65b 100644 --- a/modules/core@1.0.0/src/array.n8 +++ b/modules/core@1.0.0/src/array.n8 @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with N8. If not, see . -val("n8-std") +val("core") array.create, array.clear, diff --git a/modules/core@1.0.0/src/crypt.n8 b/modules/core@1.0.0/src/crypt.n8 index a4f3329..2b54496 100644 --- a/modules/core@1.0.0/src/crypt.n8 +++ b/modules/core@1.0.0/src/crypt.n8 @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with N8. If not, see . -val("n8-std") +val("core") crypt.md5, crypt.validateMd5, diff --git a/modules/core@1.0.0/src/env.n8 b/modules/core@1.0.0/src/env.n8 index 930788b..42f1185 100644 --- a/modules/core@1.0.0/src/env.n8 +++ b/modules/core@1.0.0/src/env.n8 @@ -15,6 +15,6 @@ # You should have received a copy of the GNU General Public License # along with N8. If not, see . -val("n8-std") +val("core") env.set, env.get diff --git a/modules/core@1.0.0/src/glfw.n8 b/modules/core@1.0.0/src/glfw.n8 index 21736a9..93bac85 100644 --- a/modules/core@1.0.0/src/glfw.n8 +++ b/modules/core@1.0.0/src/glfw.n8 @@ -15,6 +15,6 @@ # You should have received a copy of the GNU General Public License # along with N8. If not, see . -val("n8-std") +val("core") glfw.init, glfw.terminate diff --git a/modules/core@1.0.0/src/io.n8 b/modules/core@1.0.0/src/io.n8 index f666df2..2421533 100644 --- a/modules/core@1.0.0/src/io.n8 +++ b/modules/core@1.0.0/src/io.n8 @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with N8. If not, see . -val("n8-std") +val("core") io.print, io.printLine, diff --git a/modules/core@1.0.0/src/math.n8 b/modules/core@1.0.0/src/math.n8 index 5d4cf57..86b0913 100644 --- a/modules/core@1.0.0/src/math.n8 +++ b/modules/core@1.0.0/src/math.n8 @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with N8. If not, see . -val("n8-std") +val("core") math.cos, math.cosh, diff --git a/modules/core@1.0.0/src/ml.n8 b/modules/core@1.0.0/src/ml.n8 index d8679f9..c3ac9bf 100644 --- a/modules/core@1.0.0/src/ml.n8 +++ b/modules/core@1.0.0/src/ml.n8 @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with N8. If not, see . -val("n8-std") +val("core") ml.trendline.calculate, ml.trendline.calculateRmse, ml.trendline.predict diff --git a/modules/core@1.0.0/src/reflect.n8 b/modules/core@1.0.0/src/reflect.n8 index 5845132..9253e2e 100644 --- a/modules/core@1.0.0/src/reflect.n8 +++ b/modules/core@1.0.0/src/reflect.n8 @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with N8. If not, see . -val("n8-std") +val("core") reflect.get, reflect.has, reflect.typeOf, diff --git a/modules/core@1.0.0/src/sys.n8 b/modules/core@1.0.0/src/sys.n8 index f1693f1..0bc99d6 100644 --- a/modules/core@1.0.0/src/sys.n8 +++ b/modules/core@1.0.0/src/sys.n8 @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with N8. If not, see . -val("n8-std") +val("core") sys.quickShell, sys.shellConnect, sys.shellWrite,