Skip to content

Commit

Permalink
Updated importation method on standard library.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Dec 13, 2024
1 parent d00077c commit 3558e97
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion modules/[email protected]/src/array.n8
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with N8. If not, see <https://www.gnu.org/licenses/>.

val("n8-std")
val("core")
array.create,
array.clear,

Expand Down
2 changes: 1 addition & 1 deletion modules/[email protected]/src/crypt.n8
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with N8. If not, see <https://www.gnu.org/licenses/>.

val("n8-std")
val("core")
crypt.md5,
crypt.validateMd5,

Expand Down
2 changes: 1 addition & 1 deletion modules/[email protected]/src/env.n8
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# You should have received a copy of the GNU General Public License
# along with N8. If not, see <https://www.gnu.org/licenses/>.

val("n8-std")
val("core")
env.set,
env.get
2 changes: 1 addition & 1 deletion modules/[email protected]/src/glfw.n8
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# You should have received a copy of the GNU General Public License
# along with N8. If not, see <https://www.gnu.org/licenses/>.

val("n8-std")
val("core")
glfw.init,
glfw.terminate
2 changes: 1 addition & 1 deletion modules/[email protected]/src/io.n8
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with N8. If not, see <https://www.gnu.org/licenses/>.

val("n8-std")
val("core")
io.print,
io.printLine,

Expand Down
2 changes: 1 addition & 1 deletion modules/[email protected]/src/math.n8
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with N8. If not, see <https://www.gnu.org/licenses/>.

val("n8-std")
val("core")
math.cos,
math.cosh,

Expand Down
2 changes: 1 addition & 1 deletion modules/[email protected]/src/ml.n8
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with N8. If not, see <https://www.gnu.org/licenses/>.

val("n8-std")
val("core")
ml.trendline.calculate,
ml.trendline.calculateRmse,
ml.trendline.predict
2 changes: 1 addition & 1 deletion modules/[email protected]/src/reflect.n8
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with N8. If not, see <https://www.gnu.org/licenses/>.

val("n8-std")
val("core")
reflect.get,
reflect.has,
reflect.typeOf,
Expand Down
2 changes: 1 addition & 1 deletion modules/[email protected]/src/sys.n8
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with N8. If not, see <https://www.gnu.org/licenses/>.

val("n8-std")
val("core")
sys.quickShell,
sys.shellConnect,
sys.shellWrite,
Expand Down

0 comments on commit 3558e97

Please sign in to comment.