darcsden :: alex -> the -> blob

the programming language

root / prelude / comparable.the

1
2
3
4
5
6
x max: y :=
    if: (x > y) then: { x } else: { y }

x min: y :=
    if: (x < y) then: { x } else: { y }