diff options
| author | Cody <cody@codyq.dev> | 2023-04-27 18:42:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-27 18:42:28 -0500 |
| commit | 86eab2dc7dc2f88e0f56d09ae3b5f36cf8d9706e (patch) | |
| tree | d312fd5c0981df90aef29a4131703ae89f328268 /crates/sloth_vm/src/native.rs | |
| parent | 448babe8090c2bcf177c23efd2257a926a1d07f7 (diff) | |
| parent | d6b12291db70ea19d37d84226161f964400ae0b2 (diff) | |
| download | sloth-86eab2dc7dc2f88e0f56d09ae3b5f36cf8d9706e.tar.gz | |
Merge pull request #5 from slothlang/standard-library
Standard Library
Diffstat (limited to 'crates/sloth_vm/src/native.rs')
| -rw-r--r-- | crates/sloth_vm/src/native.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/sloth_vm/src/native.rs b/crates/sloth_vm/src/native.rs index 8790cbd..fbd2626 100644 --- a/crates/sloth_vm/src/native.rs +++ b/crates/sloth_vm/src/native.rs @@ -15,4 +15,5 @@ pub struct NativeFunction { pub function: NativeFunctionInput, pub arity: u8, pub returns_value: bool, + pub doc: Option<&'static str>, } |
