Clean up and move things around
This commit is contained in:
8
byg/src/Evaluation/Function.hs
Normal file
8
byg/src/Evaluation/Function.hs
Normal file
@@ -0,0 +1,8 @@
|
||||
module Evaluation.Function
|
||||
( evalFunction
|
||||
) where
|
||||
|
||||
import Types (Function(..))
|
||||
|
||||
evalFunction :: Function -> a -> b
|
||||
evalFunction = undefined
|
||||
8
byg/src/Evaluation/FunctionIO.hs
Normal file
8
byg/src/Evaluation/FunctionIO.hs
Normal file
@@ -0,0 +1,8 @@
|
||||
module Evaluation.FunctionIO
|
||||
( evalFunctionIO
|
||||
) where
|
||||
|
||||
import Types (FunctionIO(..))
|
||||
|
||||
evalFunctionIO :: FunctionIO -> a -> b
|
||||
evalFunctionIO = undefined
|
||||
Reference in New Issue
Block a user