timeblok 0.5.0

A language for event scheduling in plain text
Documentation
1
2
3
4
5
use std::fmt::Display;

pub fn warn<T: Display>(msg: T) {
    eprintln!("[Warning] {}", msg);
}