annotate demo/listShop.ur @ 2209:0ca11d57c175

Cleans up interface (it's now a command line option) and renames project to "sqlcache" in the all-one-word style. Still has issues to do with concurrency, retrying transactions, and foreign function calls that either rely on state or have side effects.
author Ziv Scully <ziv@mit.edu>
date Sat, 31 May 2014 03:08:16 -0400
parents 8084fa9216de
children
rev   line source
adamc@397 1 structure I = struct
adamc@397 2 type t = int
adamc@403 3 val toString = show
adamc@403 4 val fromString = read
adamc@397 5 end
adamc@397 6
adamc@397 7 structure S = struct
adamc@397 8 type t = string
adamc@403 9 val toString = show
adamc@403 10 val fromString = read
adamc@397 11 end
adamc@397 12
adamc@397 13 structure IL = ListFun.Make(I)
adamc@397 14 structure SL = ListFun.Make(S)
adamc@397 15
adamc@397 16 fun main () = return <xml><body>
adamc@397 17 Pick your poison:<br/>
adamc@397 18 <li> <a link={IL.main ()}>Integers</a></li>
adamc@397 19 <li> <a link={SL.main ()}>Strings</a></li>
adamc@397 20 </body></xml>