doc comments and further testing

This commit is contained in:
nora 2021-04-24 15:20:18 +02:00
parent 5b9dd9ca67
commit 248d07e317
5 changed files with 727 additions and 164 deletions

View file

@ -1,10 +1,9 @@
/*!
# optimization time
first parse the bf so that it can be executed faster
most importantly: loop jumps should be immediate
*/
//!
//! # optimization time
//!
//! first parse the bf so that it can be executed faster
//! most importantly: loop jumps should be immediate
//!
use std::io::{Read, stdin};
use crate::interpreter::{MEM_SIZE, Memory, minify, parse, Statement};