presentations/highlight-js/test/detect/sml/default.txt

27 lines
469 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
structure List : LIST =
struct
val op + = InlineT.DfltInt.+
datatype list = datatype list
exception Empty = Empty
fun last [] = raise Empty
| last [x] = x
| last (_::r) = last r
fun loop ([], []) = EQUAL
| loop ([], _) = LESS
| loop (_, []) = GREATER
| loop (x :: xs, y :: ys) =
(case compare (x, y) of
EQUAL => loop (xs, ys)
| unequal => unequal)
in
loop
end
end (* structure List *)