1
Fork 0

Initial commit

This commit is contained in:
tibvdm 2022-10-24 21:19:06 +02:00
commit 99e66241df
5 changed files with 115 additions and 0 deletions

10
lib/VoorbeeldModule.hs Normal file
View file

@ -0,0 +1,10 @@
module VoorbeeldModule
( hoi -- oplijsting van de publieke functies - als je deze lijst en de haakjes weglaat, wordt alles publiek
, hallo
) where
hoi :: String
hoi = "Hoi"
hallo :: String
hallo = "Hallo"