use crate::interpreter::{self, Interpreter}; pub struct Glk { } impl Glk { pub fn call_func(interpreter: &mut Interpreter, func_id: u32, arg_count: u32) { println!("Calling GLK function with ID {func_id}"); } }