diff options
| author | nic-gaffney <gaffney_nic@protonmail.com> | 2023-04-14 04:57:53 -0500 |
|---|---|---|
| committer | nic-gaffney <gaffney_nic@protonmail.com> | 2023-04-14 04:57:53 -0500 |
| commit | 19fefeb732d559195edb01ebc36170c0cf9a0308 (patch) | |
| tree | 681bcb8d9d507024d15814032d3fbb1674677ddc /crates/sloth_vm/src/sloth_std/time.rs | |
| parent | f6e14f4b2b15b0ace8ed312252ae107f139bd33d (diff) | |
| download | sloth-19fefeb732d559195edb01ebc36170c0cf9a0308.tar.gz | |
eepy
Diffstat (limited to 'crates/sloth_vm/src/sloth_std/time.rs')
| -rw-r--r-- | crates/sloth_vm/src/sloth_std/time.rs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/crates/sloth_vm/src/sloth_std/time.rs b/crates/sloth_vm/src/sloth_std/time.rs new file mode 100644 index 0000000..4df715e --- /dev/null +++ b/crates/sloth_vm/src/sloth_std/time.rs @@ -0,0 +1,25 @@ +use std::{thread, time}; + +use crate::native::{self, NativeFunction, NativeFunctionResult}; +use crate::value::Primitive; +use crate::value::Primitive::Integer; +use crate::VM; + +fn wait(_vm: &mut VM, args: &[Primitive]) -> NativeFunctionResult { + let sec = args.get(0).cloned(); + + let Some(Integer(sec)) = sec else { + return Err(native::Error::InvalidArgument); + }; + + thread::sleep(time::Duration::from_secs(sec.try_into().unwrap())); + + Ok(Primitive::Empty) +} + +pub const WAIT: NativeFunction = NativeFunction { + name: "wait", + function: wait, + arity: 1, + returns_value: false, +}; |
