Clean up and move things around

This commit is contained in:
2024-09-23 22:11:54 +02:00
parent a098317df3
commit e7e767c007
19 changed files with 286 additions and 393 deletions

View File

@@ -0,0 +1,8 @@
module Evaluation.Function
( evalFunction
) where
import Types (Function(..))
evalFunction :: Function -> a -> b
evalFunction = undefined

View File

@@ -0,0 +1,8 @@
module Evaluation.FunctionIO
( evalFunctionIO
) where
import Types (FunctionIO(..))
evalFunctionIO :: FunctionIO -> a -> b
evalFunctionIO = undefined