From 0fb01cfb20b8142c8a4b33d0e2c374533c6219bd Mon Sep 17 00:00:00 2001 From: TudbuT Date: Sun, 8 Sep 2024 14:29:01 +0200 Subject: [PATCH] add pure.spl to stdlib --- src/stdlib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stdlib.rs b/src/stdlib.rs index fc07905..6a1e8a7 100644 --- a/src/stdlib.rs +++ b/src/stdlib.rs @@ -10,6 +10,7 @@ pub const MESSAGING: &str = include_str!("../messaging.spl"); pub const ASSEMBLE: &str = include_str!("../assemble.spl"); pub const ISBPL: &str = include_str!("../isbpl.spl"); pub const REPL: &str = include_str!("../repl.spl"); +pub const PURE: &str = include_str!("../pure.spl"); pub fn register(runtime: &mut Runtime) { multicall! { @@ -23,5 +24,6 @@ pub fn register(runtime: &mut Runtime) { insert("assemble.spl", ASSEMBLE); insert("isbpl.spl", ISBPL); insert("repl.spl", REPL); + insert("pure.spl", PURE); } }