From 5aad91f273f39ba1a11143585835e757a57de234 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Mon, 9 Jan 2023 20:13:33 +0530 Subject: refactor: moves stuff around --- examples/greeting.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/greeting.ts') diff --git a/examples/greeting.ts b/examples/greeting.ts index 20ed4fe..e4c2161 100644 --- a/examples/greeting.ts +++ b/examples/greeting.ts @@ -1,4 +1,5 @@ -import { PutString, Bind, Kind1, ReadLine, Seq, PutStringLn } from '../stdlib' +import { Bind, Kind1, Seq } from '../stdlib/effect' +import { PutString, ReadLine, PutStringLn } from '../stdlib/stdio' interface GreetK extends Kind1 { return: Seq<[PutString<'Hello, '>, PutString<`${this['input']}\n`>]> -- cgit v1.3.1