Sandbox
import {createWire, compose, tag, createTask, literal, optional, shape} from "@grlt-hub/app-compose"
const task = createTask({ name: "task", run: { fn: () => { console.log("Hello, World!") }, },})
compose().step(task).run()