mirror of
https://github.com/Noratrieb/brainfuck.git
synced 2026-01-15 22:05:02 +01:00
fixed underscore
This commit is contained in:
parent
0d29e477ce
commit
2ae00160fc
3 changed files with 10 additions and 3 deletions
|
|
@ -5,7 +5,7 @@
|
|||
use crate::interpreter::{MEM_SIZE, minify};
|
||||
use std::io::{stdin, Read};
|
||||
|
||||
pub fn _run(program: &str) -> String{
|
||||
pub fn run(program: &str) -> String{
|
||||
let program = minify(program);
|
||||
let out = interpret(program.chars().collect());
|
||||
out
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue