From 549440bf01ac5fa76d34d0b263f409a9802121e4 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 6 Jan 2023 17:57:26 +0530 Subject: refactor: uses uuid instead of your shitty math.random bullshit --- src/index.ts | 8 ++------ src/runtime.ts | 16 ++++++++-------- 2 files changed, 10 insertions(+), 14 deletions(-) (limited to 'src') diff --git a/src/index.ts b/src/index.ts index b8a69ac..aad0c00 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,7 +13,7 @@ export interface GetArgs extends EffectAtom { } export interface ReadLine extends EffectAtom { } -export interface JsExpr<_Expr extends string> extends EffectAtom {} +export interface JsExpr<_Expr extends string> extends EffectAtom { } export interface Program { effects: Effs, @@ -34,10 +34,6 @@ interface PrintK