about summary refs log tree commit diff
path: root/users/tazjin/rlox/src/interpreter.rs
blob: 6a7687c2685e06d2adcea7467da41add58dbb0cc (plain) (blame)
1
2
3
4
// Run some Lox code and print it to stdout
pub fn run(_code: &str) {
    println!("no interpreter yet, sorry")
}