basic/
basic.rs

1extern crate tangra;
2
3fn main() {
4    let mut logger = tangra::Logger::new();
5    logger.debug("Debug message example");
6}