good enough. good enough. good enough. good enoguh.jjhbjhfsfbsjhdsfjbhsdbjhdfsbhjlbahjfdaojuai

This commit is contained in:
crumbtoo
2023-11-20 14:08:18 -07:00
parent c15e67869e
commit 45952ef30e
3 changed files with 86 additions and 27 deletions

10
src/Compiler/RLPC.hs Normal file
View File

@@ -0,0 +1,10 @@
{-# LANGUAGE GeneralisedNewtypeDeriving #-}
module Compiler.RLPC
( RLPC(..)
)
where
-- TODO: fancy errors
newtype RLPC a = RLPC { runRLPC :: Either String a }
deriving (Functor, Applicative, Monad)