From 7509f7f46d0511454dccce2d52545c045cb67e57 Mon Sep 17 00:00:00 2001 From: Lily Lin Date: Tue, 25 Oct 2022 00:09:05 -0700 Subject: Much simpler fractran program Why did I commit the complex one in the first place... --- entries/lilylin/fractran/src/main.rs | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 entries/lilylin/fractran/src/main.rs (limited to 'entries/lilylin/fractran/src/main.rs') diff --git a/entries/lilylin/fractran/src/main.rs b/entries/lilylin/fractran/src/main.rs deleted file mode 100644 index a874e1d..0000000 --- a/entries/lilylin/fractran/src/main.rs +++ /dev/null @@ -1,28 +0,0 @@ -#![feature(int_log)] - -use crate::core::Program; - -use anyhow::Ok; -use anyhow::Result; -use engines::register::Register; - -mod core; -mod engines; - -fn execute_fib() { - for i in 1..15 { - let engine = Register { - program: Program::fibonacci(i), - output_base: 2, - }; - let n = 1; - for val in engine.into_iter().take(n) { - print!("{:?},", val); - } - } -} - -fn main() -> Result<()> { - execute_fib(); - return Ok(()); -} -- cgit v1.2.3-70-g09d2