From 13b95941183666fadd090314e4e9af33283084cd Mon Sep 17 00:00:00 2001 From: Sophie Forrest Date: Fri, 30 Aug 2024 23:35:45 +1200 Subject: feat(engine)!: implement u32 engine --- src/utility.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/utility.rs') diff --git a/src/utility.rs b/src/utility.rs index 4eba853..514343c 100644 --- a/src/utility.rs +++ b/src/utility.rs @@ -37,10 +37,7 @@ pub fn execute_from_file( /// This function will return an error if parsing or /// execution fails. See documentation for [`crate::parser::parse`] and /// [`crate::executor::execute`]. -pub fn execute_from_str>( - input: &str, - tape: &mut [E::TapeInner], -) -> Result<(), Error> { +pub fn execute_from_str(input: &str, tape: &mut [E::TapeInner]) -> Result<(), Error> { let operator_codes = lex(input); let instructions = parse(input, &operator_codes)?; -- cgit 1.4.1