diff --git a/Haskell/operators.hs b/Haskell/operators.hs new file mode 100644 index 0000000..34e3f6a --- /dev/null +++ b/Haskell/operators.hs @@ -0,0 +1,4 @@ +add a b = a + b +substract a b = a - b +produce a b = a * b +divide a b = a / b