Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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.