blob: 2aff971f09a56f9e07b1d570c0ad213d3b8870d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
use crate::scanner;
// Run some Lox code and print it to stdout
pub fn run(code: &str) {
let chars: Vec<char> = code.chars().collect();
let _tokens = scanner::scan(&chars);
println!("no interpreter yet, sorry")
}
|