remove useless commented code

This commit is contained in:
b1ek 2023-08-22 22:09:14 +10:00
parent ae7befcbee
commit 80f8998e04
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 0 additions and 6 deletions

View File

@ -2,12 +2,6 @@
use std::io::{stdout, Write, Read, stdin}; use std::io::{stdout, Write, Read, stdin};
// struct BrainFuckProgram {
// memory: [u8; 30000],
// pointer: usize,
// source: String
// }
pub fn eval_mem(bf_str: &&str, mem: &mut [u8], pointer: &mut usize) -> Result<(), String> { pub fn eval_mem(bf_str: &&str, mem: &mut [u8], pointer: &mut usize) -> Result<(), String> {
let mut pos = 0 as usize; let mut pos = 0 as usize;