C_C++
Haskell
10.hs
2.hs
3.hs
4.hs
5.hs
7.hs
dist.hs
hw.hs
operators.hs
prime.hs
test.hs
unzip.hs
Java
Misc.
Python
Vim
Webdev
git
.gitignore
Makefile
15 lines
106 B
Haskell
15 lines
106 B
Haskell
-- comment
|
|
module Test where
|
|
|
|
one :: Int
|
|
one = 1
|
|
|
|
f x = x + 1
|
|
|
|
g :: Int -> Bool
|
|
g x = x < 10
|
|
|
|
{-
|
|
test
|
|
-}
|