comparison tests/hog.ur @ 1307:d2ad997ca157

Interface for setting memory limits
author Adam Chlipala <adam@chlipala.net>
date Thu, 14 Oct 2010 11:06:26 -0400
parents
children a1aa62b472cf
comparison
equal deleted inserted replaced
1306:3a845f2ce9e9 1307:d2ad997ca157
1 fun more n =
2 if n <= 0 then
3 "!"
4 else
5 more (n-1) ^ more (n-1)
6
7 fun main n = return <xml>{[more n]}</xml>