adam@1542: fun id n = if n = 0 then 0 else 1 + id (n - 1) adam@1542: adam@1542: fun main () : transaction page = return adam@1542: