From e319818b8cc27450237f4b6b96022458ae478ab2 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 6 Jan 2023 18:07:26 +0530 Subject: refactor: splits funcs into stdlib --- src/stdlib/stdio.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/stdlib/stdio.ts (limited to 'src/stdlib/stdio.ts') diff --git a/src/stdlib/stdio.ts b/src/stdlib/stdio.ts new file mode 100644 index 0000000..96c27f8 --- /dev/null +++ b/src/stdlib/stdio.ts @@ -0,0 +1,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 { } + +export interface ReadLine extends EffectAtom { } + -- cgit v1.3.1