macro_rules! println { () => { ... }; ($($arg:tt)*) => { ... }; }
Prints to Aidoku logs.
println!(); // prints just a newline println!("hello there!"); println!("format {} arguments", "some"); let local_variable = "some"; println!("format {local_variable} arguments");