Macro ::std::io::dbg!(..)

Overview

Debug print the given argument.

Everything in rune can be "debug printed" in one way or another. This is provided as a cheap an dirty way to introspect values.

See also the dbg! macro.

Examples

let number = 10;
let number = number * 4;

let who = "World";
let string = format!("Hello {}", who);

dbg!(number, string);