fumo:console
The console module provides named functions and the shared package console object.
import {
console,
log,
warn,
error
} from "fumo:console";
log("package loaded");
warn("example warning");
error("example error");
The named functions behave identically to the matching global console methods.