1 2 3 4 5 6
import * as IO from "fp-ts/IO"; import { readFileSync } from "fs"; const main: IO.IO<void> = ConsoleLogger.log("Hello, world!"); main();