aboutsummaryrefslogtreecommitdiff
path: root/examples/greeting.ts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/greeting.ts')
-rw-r--r--examples/greeting.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/greeting.ts b/examples/greeting.ts
index 8ed2181..72edde2 100644
--- a/examples/greeting.ts
+++ b/examples/greeting.ts
@@ -10,12 +10,11 @@ export type main = [
PutStringLn<'----------------'>,
PutString<'Your name? '>,
- Bind<ReadLine, <name extends string>() =>
- PutStringLn<`Hello, ${name}`>>,
+ Bind<ReadLine, <name extends string>() => PutStringLn<`Hello, ${name}`>>,
PutStringLn<'----------------'>,
PutString<'Your purpose in life? '>,
Bind<ReadLine, ResponseK>,
- PutStringLn<'----------------'>,
+ PutStringLn<'----------------'>
]