aboutsummaryrefslogtreecommitdiff
path: root/crates/sloth_vm/src/sloth_std/mod.rs
diff options
context:
space:
mode:
authornic-gaffney <gaffney_nic@protonmail.com>2023-04-27 17:56:00 -0500
committernic-gaffney <gaffney_nic@protonmail.com>2023-04-27 17:56:00 -0500
commitfdaa289c2f55b31668ef0a6ec986cf459c834eb6 (patch)
tree67c3600a35a363d32b6b1b060621509eb6970c31 /crates/sloth_vm/src/sloth_std/mod.rs
parentac8c9abab30d66ff208a623d0a6de8869373a554 (diff)
downloadsloth-fdaa289c2f55b31668ef0a6ec986cf459c834eb6.tar.gz
Applied changes requested by @CatDevz
Diffstat (limited to 'crates/sloth_vm/src/sloth_std/mod.rs')
-rw-r--r--crates/sloth_vm/src/sloth_std/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/sloth_vm/src/sloth_std/mod.rs b/crates/sloth_vm/src/sloth_std/mod.rs
index 982017d..ff761a6 100644
--- a/crates/sloth_vm/src/sloth_std/mod.rs
+++ b/crates/sloth_vm/src/sloth_std/mod.rs
@@ -36,5 +36,8 @@ pub static NATIVE_LIBRARY: Lazy<HashMap<&'static str, NativeFunction>> = Lazy::n
// time
map.insert("wait", time::WAIT);
+ // doc
+ map.insert("docs", misc::DOCS);
+
map
});