This repository has been archived on 2023-06-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2022FuncProg-project3-RPGEn.../lib/VoorbeeldModule.hs
2022-11-22 20:14:52 +01:00

10 lines
213 B
Haskell

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"