Mercurial > urweb
view tests/recReal3.ur @ 2135:a159625975a7
Allow file directives to contain slashes
Previously, adding a line such as "file /c/foo.css css/foo.css" would
cause the compiler to raise an InvalidArc exception.
author | Julian Squires <julian@cipht.net> |
---|---|
date | Fri, 24 Apr 2015 07:51:47 -0400 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
val rec endlessList1 = fn () => <body> <li> Buy eggs.</li> {endlessList2 ()} </body> and endlessList2 = fn () => <body> <li> Buy milk.</li> {endlessList1 ()} {endlessList3 ()} </body> and endlessList3 = fn () => <body> <li> Buy goat.</li> </body> val main = fn () => <html><body> {endlessList1 ()} </body></html>