fixed underscore

This commit is contained in:
nora 2021-04-24 15:31:28 +02:00
parent 0d29e477ce
commit 2ae00160fc
3 changed files with 10 additions and 3 deletions

View file

@ -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