aboutsummaryrefslogtreecommitdiff
path: root/examples/file.ts
blob: b0942def80dbb669b58545db595bc33b97ebd133 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { Bind, Kind1, ReadFile, PutStringLn } from '../stdlib'

interface PrintK extends Kind1<string> {
  return: PutStringLn<this['input']>
}

export type main = [
  Bind<ReadFile<"./default.nix">, PrintK>,
]