We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e987409 + 18ba52a commit 779e4c1Copy full SHA for 779e4c1
3 files changed
slosh_lib/src/lib.rs
@@ -169,6 +169,13 @@ fn get_home_dir() -> Option<PathBuf> {
169
}
170
171
172
+pub fn load_test(env: &mut SloshVm) {
173
+ match load_internal(env, "test.slosh") {
174
+ Ok(_) => {}
175
+ Err(err) => eprintln!("ERROR: {err}"),
176
+ }
177
+}
178
+
179
pub fn load_builtins_lisp(env: &mut SloshVm) -> VMResult<()> {
180
for (name, _) in BUILTINS.iter() {
181
load_internal(env, name)?;
0 commit comments