Mercurial > urweb
view demo/ref.ur @ 623:588b9d16b00a
Start of kind polymorphism, up to the point where demo/hello elaborates with updated Basis/Top
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 22 Feb 2009 16:10:25 -0500 |
parents | b393c2fc80f8 |
children | aa2290c32ce2 |
line wrap: on
line source
structure IR = RefFun.Make(struct type t = int end) structure SR = RefFun.Make(struct type t = string end) fun main () = ir <- IR.new 3; ir' <- IR.new 7; sr <- SR.new "hi"; IR.write ir' 10; iv <- IR.read ir; iv' <- IR.read ir'; sv <- SR.read sr; IR.delete ir; IR.delete ir'; SR.delete sr; return <xml><body> {[iv]}, {[iv']}, {[sv]} </body></xml>