mirror of
https://github.com/Noratrieb/brainfuck.git
synced 2026-01-16 06:15:02 +01:00
small changes
This commit is contained in:
parent
329c33f3cb
commit
5cc058267b
6 changed files with 14 additions and 15 deletions
|
|
@ -1,11 +1,12 @@
|
|||
mod interpreter;
|
||||
mod repl;
|
||||
|
||||
use std::{env, fs};
|
||||
use std::time::SystemTime;
|
||||
|
||||
|
||||
fn main() {
|
||||
let path = env::args().skip(1).next();
|
||||
let path = env::args().nth(1);
|
||||
let path = match path {
|
||||
Some(p) => p,
|
||||
None => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue