Skip to content

Haskell:IntermediateHaskell

하스켈 중급 (Intermediate Haskell)

모듈 (Modules)

독립실행 프로그램 (Standalone programs)

들여쓰기 (Indentation)

데이터타입 보충설명 (More on datatypes)

data Configuration =

Configuration { username      :: String,
localhost     :: String,
remotehost    :: String,
isguest       :: Bool,
issuperuser   :: Bool,
currentdir    :: String,
homedir       :: String,
timeconnected :: Integer
}

</syntaxhighlight>

다른 자료구조들 (Other data structures)

클래스와 타입 (Classes and types)

Functor 클래스 (The Functor class)

See also