previous up next
Go backward to Example
Go up to Top
Go forward to Defining Functions
RISC-Linz logo

Defining Functions

Various common formats:

f: A -> B
     x |-> T
f: A -> B
f(x) := T
f: A -> B
f := lambda x. T
f(x: A): B = T

Author: Wolfgang Schreiner
Last Modification: October 14, 1999

previous up next