diff options
Diffstat (limited to 'src/builtins.rs')
| -rw-r--r-- | src/builtins.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/builtins.rs b/src/builtins.rs index 51ea699..a24db52 100644 --- a/src/builtins.rs +++ b/src/builtins.rs @@ -5,9 +5,9 @@ use std::rc::Rc; #[derive(Debug, Clone, PartialEq)] pub struct Builtin { - identifier: &'static str, - repr_name: &'static str, - arguments: Vec<Value>, + pub identifier: &'static str, + pub repr_name: &'static str, + pub arguments: Vec<Value>, } impl fmt::Display for Builtin { |
