annotate tests/monadTest.ur @ 1836:276fa06428ba

Ignore polymorphism in JavaScript calls to custom FFI functions, allowing a kind of simple dynamic typing (unsafe, of course)
author Adam Chlipala <adam@chlipala.net>
date Tue, 11 Dec 2012 15:58:23 -0500
parents a613cae954ca
children
rev   line source
adam@1768 1 val x : transaction int = Monad.liftM2 plus (return 1) (return 2)
adam@1768 2
adam@1768 3 val x : transaction xbody = List.mapXiM (fn i x => return <xml><li>{[i]} = {[x]}</li></xml>) (1 :: 2 :: [])