From 518a6a9ee31f0b03f08cb77bc613b4d708bb640b Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 13 Jan 2023 20:32:20 +0530 Subject: chore: prettier --- examples/hello-world.ts | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) (limited to 'examples/hello-world.ts') diff --git a/examples/hello-world.ts b/examples/hello-world.ts index fcdb8e9..9d2bc18 100644 --- a/examples/hello-world.ts +++ b/examples/hello-world.ts @@ -1,20 +1,13 @@ -import { Bind, Do, Kind1 } from "../stdlib/effect"; -import { CreateRef, GetRef, Ref, SetRef } from "../stdlib/ref"; -import { Print } from "../stdlib/stdio"; +import { Bind, Do, Kind1 } from '../stdlib/effect' +import { CreateRef, GetRef, Ref, SetRef } from '../stdlib/ref' +import { Print } from '../stdlib/stdio' interface PrintK extends Kind1 { return: Print } interface Func extends Kind1 { - return: Do<[ - SetRef, - Bind, PrintK>, - ]> + return: Do<[SetRef, Bind, PrintK>]> } -export type main = [ - Bind, Func>, - Print<1>, -] - +export type main = [Bind, Func>, Print<1>] -- cgit v1.3.1