Mercurial > urweb
annotate tests/pathmap.ur @ 1904:686fa4e7f397
xml/parse: Accept entity files on the command line
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
---
Makefile.am | 2 +-
xml/parse.sml | 4 +---
2 files changed, 2 insertions(+), 4 deletions(-)
author | Anders Kaseorg <andersk@mit.edu> |
---|---|
date | Fri, 22 Nov 2013 09:36:14 -0500 |
parents | 6271f0e3c272 |
children |
rev | line source |
---|---|
adamc@794 | 1 val x = List.rev (List.Cons (1, List.Cons (0, List.Nil))) |
adamc@794 | 2 val y = List.mp (plus 2) x |
adamc@794 | 3 |
adamc@794 | 4 fun main () : transaction page = return <xml><body> |
adamc@794 | 5 {[x]}<br/> |
adamc@795 | 6 {[y]}<br/> |
adamc@796 | 7 {[Aux.hello]}<br/> |
adamc@796 | 8 {List.mapX (fn n => <xml>{[n]}!</xml>) x} |
adamc@794 | 9 </body></xml> |