When attempting to load Haskell file test.hs into terminal. I get this response:
<interactive>:5:1: error: Variable not in scope: test :: b0 -> c
<interactive>:5:6: error: Variable not in scope: hs :: a -> b0
This is the code from test.hs:
double x = x + x
quadruple x = double (double x)
How do I get the file to load in terminal?
openai says look for documentation or may need to import module?