aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/stdio.ts
blob: 96c27f8e073832ce5a1ad56a7dfe55e06393df72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { EffectAtom } from './io'

export interface PutString<_ extends string> extends EffectAtom { }

export interface Print<_ extends any> extends EffectAtom { }

export interface Debug<_ extends string, T> extends EffectAtom<T> { }

export interface ReadLine extends EffectAtom<string> { }