annotate tests/fromStringErr.ur @ 1272:56bd4a4f6e66
Some serious bug-fix work to get HTML example to compile; this includes fixing a bug with 'val' patterns in Unnest and the need for more local reduction in Especialize
author |
Adam Chlipala <adamc@hcoop.net> |
date |
Thu, 03 Jun 2010 13:04:37 -0400 |
parents |
df02b09ff1ed |
children |
|
rev |
line source |
adamc@292
|
1 fun main () : transaction page = return <html><body>
|
adamc@292
|
2 3 = {cdata (show _ (readError _ "3" : int))}<br/>
|
adamc@293
|
3 12.12 = {cdata (show _ (readError _ "12.12" : float))}<br/>
|
adamc@294
|
4 Hi = {cdata (show _ (readError _ "Hi" : string))}<br/>
|
adamc@293
|
5 True = {cdata (show _ (readError _ "True" : bool))}<br/>
|
adamc@292
|
6 </body></html>
|