module ModuleLoadingTest where
import Test.QuickCheck
data Fool = Fulse | Frue deriving (Eq, Show)
foolGen :: Gen Fool
foolGen = frequency [(2, return Fulse), (1, return Frue)]
total 124
drwxrwxr-x 5 kkweon kkweon 4096 Sep 12 03:14 .
drwxrwxr-x 13 kkweon kkweon 4096 Sep 10 16:20 ..
-rw-rw-r-- 1 kkweon kkweon 180 Sep 12 03:14 ModuleLoadingTest.hs
drwxrwxr-x 6 kkweon kkweon 4096 Sep 10 19:46 morse
drwxrwxr-x 2 kkweon kkweon 4096 Sep 12 03:14 src
drwxrwxr-x 4 kkweon kkweon 4096 Sep 10 17:45 Testing
lrwxrwxrwx 1 kkweon kkweon 36 Sep 12 03:14 .#Testing.org -> [email protected]:1505195625
-rw-rw-r-- 1 kkweon kkweon 100574 Sep 12 03:14 Testing.org
:module + ModuleLoadingTest
<no location info>: error:
Could not find module ‘ModuleLoadingTest’
It is not a module in the current program, or in any known package.
<no location info>: error:
Could not find module ‘ModuleLoadingTest’
It is not a module in the current program, or in any known package.
[1 of 1] Compiling ModuleLoadingTest ( ModuleLoadingTest.hs, interpreted )
Ok, modules loaded: ModuleLoadingTest.
target ‘moduleloadingtest’ is not a module name or a source file