comparison src/mono.sml @ 120:6230bdd122e7

Passing an argument to a web function
author Adam Chlipala <adamc@hcoop.net>
date Sun, 13 Jul 2008 20:07:10 -0400
parents ff13d390ec60
children 76a4d69719d8
comparison
equal deleted inserted replaced
119:7fdc146b2bc2 120:6230bdd122e7
59 59
60 withtype exp = exp' located 60 withtype exp = exp' located
61 61
62 datatype decl' = 62 datatype decl' =
63 DVal of string * int * typ * exp * string 63 DVal of string * int * typ * exp * string
64 | DExport of string * int 64 | DExport of string * int * typ list
65 65
66 withtype decl = decl' located 66 withtype decl = decl' located
67 67
68 type file = decl list 68 type file = decl list
69 69