Adapt code from iganaq

This commit is contained in:
Juno Takano 2026-03-30 07:59:30 -03:00
commit ca20c11962
60 changed files with 1329 additions and 1860 deletions

View file

@ -1,6 +0,0 @@
pub fn elog(message: &str) {
// DONE MUST be printed only if DEBUG is set in the environment
if let Ok(debug) = std::env::var("DEBUG") && !debug.is_empty() {
eprintln!(" [log] {message}");
}
}