small changes

This commit is contained in:
nora 2021-05-03 16:08:35 +02:00
parent 329c33f3cb
commit 5cc058267b
6 changed files with 14 additions and 15 deletions

View file

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