Macro andiskaz::tdebug[][src]

macro_rules! tdebug {
    ($($tok : tt) +) => { ... };
}
Expand description

Writes the given formatting expression into the file debug.txt.

Example

use andiskaz::coord::Vec2;

let coords = Vec2 { x: 3, y: 5 };
andiskaz::tdebug!("coords = {:?}\n", coords);