diff options
Diffstat (limited to 'src/index.ts')
| -rw-r--r-- | src/index.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/index.ts b/src/index.ts index a144c57..f6d46d6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,7 +6,9 @@ import { evalList } from './util' const main = () => { program .name('ts-types-lang') - .description(`A runtime for typescript's type system that turns it into a general purpose, purely functional programming language!`) + .description( + `A runtime for typescript's type system that turns it into a general purpose, purely functional programming language!` + ) program .command('run') @@ -24,5 +26,4 @@ const main = () => { return program.parseAsync() } -main() - .finally(() => cleanup()) +main().finally(() => cleanup()) |
