定義自己的模組

如果我們有一個名為 Business.hs 的檔案,我們可以定義一個 Business-ed 的 Business 模組,如下所示:

module Business (
    Person (..), -- ^ Export the Person type and all its constructors and field names
    employees   -- ^ Export the employees function
) where
-- begin types, function definitions, etc

更深層次的結構當然是可能的; 請參閱 Hierarchical module names 示例。