Basic Haskell: script or program files

 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Basic Haskell: script or program files
bullet External text files for definitions
The interactive command line is quite powerful by itself, but for serious programming we need to make and use definitions; this is done in external files, which are then loaded into the interpreter

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Basic Haskell: script or program files
bullet External text files for definitions
bullet "Off-side" rule uses layout to control structure
Haskell program files are just series of definitions (values, functions, data types, etc.) which may refer to each other (and themselves, recursively) Layout is used to control the nesting of local clauses in definitions: this leads to less need for punctuation

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Basic Haskell: script or program files
bullet External text files for definitions
bullet "Off-side" rule uses layout to control structure
bullet "Literate script" option
In a standard Haskell file (".hs" suffix) comments are set off from code (using "--" or "{- ... -" } A second form, the "literate style (".lhs" suffix) inverts the normal code/comment relationship: code must be set off (with a "> " prefix)

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Basic Haskell: script or program files
bullet External text files for definitions
bullet "Off-side" rule uses layout to control structure
bullet "Literate script" option
bullet Simple modules system for control of namespaces
Although Haskell does not have a sophisticated higher-order module system (as in Standard ML), it provides modular structure with simple import commands and "hiding" specifications

Control bar