diff src/cjr.sml @ 121:91027db5a07c

Multiple arguments to web functions
author Adam Chlipala <adamc@hcoop.net>
date Sun, 13 Jul 2008 20:24:05 -0400
parents 6230bdd122e7
children 78d59cf0a0cc
line wrap: on
line diff
--- a/src/cjr.sml	Sun Jul 13 20:07:10 2008 -0400
+++ b/src/cjr.sml	Sun Jul 13 20:24:05 2008 -0400
@@ -57,7 +57,7 @@
 datatype decl' =
          DStruct of int * (string * typ) list
        | DVal of string * int * typ * exp
-       | DFun of string * int * string * typ * typ * exp
+       | DFun of string * int * (string * typ) list * typ * exp
 
 withtype decl = decl' located