Minimal Console + seq() demonstration
const hello = () =>
seq()
.tap(() => Console.op.log("Starting"))
.let(() => 42)
.tap((count) => Console.op.log(`Answer: ${count}`))
.then((count) => ({message: "Hello!", count}))
.value();
Console output, timeline events will render here after you run the program.
Handlers: Console.capture() ยท Exception.tryCatch()