diff --git a/example.hs b/example.hs new file mode 100644 index 0000000..578b6a3 --- /dev/null +++ b/example.hs @@ -0,0 +1,6 @@ +add :: Int -> Int -> Int +add x y = x * y + + +subtract :: Int -> Int -> Int +subtract x y = x + y