annotate tests/fact.ur @ 2062:795b5b75453c

Add 'role' data attribute. Note, that 'role' attribute is a part of reach ARIA API described here: http://www.w3.org/TR/wai-aria/ Among 'role', it defines lots of aria-* attributes
author Sergey Mironov <grrwlf@gmail.com>
date Mon, 07 Jul 2014 10:05:04 +0400
parents a71223513c77
children
rev   line source
adam@1524 1 fun fact n = if n <= 1 then 1 else n * fact (n - 1)
adam@1524 2
adam@1524 3 fun factTr n acc = if n <= 1 then acc else factTr (n - 1) (n * acc)
adam@1524 4
adam@1524 5 fun main () : transaction page = return <xml>{[fact 10]}, {[factTr 10 1]}</xml>