From 8ddce17279782a1ea21670c036373f03ee1e318b Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Sat, 12 Apr 2025 00:35:25 -0500 Subject: [PATCH] start of conj, TODO --- src/instructions/vector.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/instructions/vector.rs b/src/instructions/vector.rs index 1762b08..aac69e7 100644 --- a/src/instructions/vector.rs +++ b/src/instructions/vector.rs @@ -16,6 +16,10 @@ make_instruction_clone!(vector_boolean, vector_boolean, _concat, Vec, 2); make_instruction_clone!(vector_char, vector_char, _concat, Vec, 2); make_instruction_clone!(string, string, _concat, Vec, 2); +pub fn _conj(vals: Vec>) -> Option> { + None // @TODO: This gonna need new instruction macros. Tomorrow issue. +} + #[cfg(test)] mod tests { use super::*;