On Fri, 2005-07-22 at 10:42 +1200, Jonathan Roewen wrote: > Hi, > > I'm getting a curious syntax error: > > in my Key.mli file, I have: > > val kEnter: int; > val kBksp: int; Because of the curious semicolons .. which are infix sequencing operators used in expressions. val binding in an interface is not an expression.. -- John Skaller