On Thu, 27 Nov 2003 11:16:24 +0000, Richard Jones <rich@...> ... Makefiles aren't the only problem. One example ( that I remember was a problem in the...
On Fri, 28 Nov 2003 14:28:11 +0100, Hendrik Tews ... Uhm. I'm not quite sure what the language barrier here is, but clearly you misunderstand. When I say...
Hello I'm trying to talk with a little machine so I've looked at serial port programming in Ocaml. The (short) reference seems to be a post by Xavier Leroy,...
Ok. I compile my stuff which includes some C wrapper stuff. Working in the toplevel, I have problems with some calls to the C functions in the top level. What...
Thaddeus L. Olczyk writes: I have a problem with changing multiple arguments to tuples. You are right. The necessary currying/uncurrying can get cumbersome. If...
Some good soul on this list pointed me to OCaml grammar, which is here: http://caml.inria.fr/ocaml/htmlman-beta2/manual008.html There is also its fully...
I had thinking about this and I can't find the solution : What means '_a list maybe something like ('a'a) list ????? # (function x -> function y -> x@y) [];; -...
Here is the production for variant-type: http://caml.inria.fr/ocaml/htmlman-beta2/manual012.html It is like this (I enclosed terminals in quotation marks): ...
... it stand for the to be defined operator >| I believed : Unbound value >| # let ( >| ) x y = x + y ;; val ( >| ) : int -> int -> int = <fun> # 3 >| 2;; - :...
... is ... Huh, you are righ. "[<" is a lexical symbol. This means that the grammar in the documentation must be incorrect / different, because the productions...
... the comportment of the parser is as if it was true. The actual ... where LBRACKET is [, LBRACKETLESS is [<, GREATER is > by the way, their are other...
Hi, I'm having trouble using the high-level network connection functions from the Unix module, that is, open_connection and shutdown_connection. For all I ...
... [...] My test prove me that this seem to be an windows related problem. Then I read the unix library manual, and more precisely the porting stuff, where...
... I'm using XP, so if it works under NT and 2000 I would expect it to work on my system. In theory at least. I'll report it to the OCaml team, and see what ...
... OK, it looks like it is fixed in the latest version now. The grammar description on the web site is still wrong. The idea is that [ and < or [ and > should...
I have this error, "The implementation toplevel/camomile.ml does not match the interface toplevel/camomile.cmi: Module type declarations do not match: ...(long...
Yamagata Yoriyuki
yoriyuki@...
Jan 13, 2004 5:34 pm
1537
I'm trying to call an already-written C function from my OCaml code. I've written a wrapper for the C function (in C) that calls CAMLparam on the incoming ...
... May I ask you: was it you compiling camomile.cmi from camomile.ml or camomile.mli? I get such errors when either my .mlis have changed and I forgot to...
Hello, I am using findlib to install packages like cryptokit or gz to local installation dir, but when I try to load code that uses them in the interpreter the...
... you should look to see what is in your ld.conf, and if the repertory where the dll.so are is not there, then add it (I'm talking of the ld.conf of ocaml,...
... the entry is there on my debian installation. Please make a bug report (to the debian package) it seem strange. (by the way, the intended location for the...
... Yes, I saw the stublibs entry but it still doesn't seem to work with findlib! Let me try again later and include some output... I'm a little busy ATM ...
Thanks I think I figured it out. BTW, does ocamlbrowser have a configuration file? The packages in /usr/local/lib... does not seem to be read by default. It's...
... No, but it recognize the -I options. By the way, to add a configuration file can be an interesting exercise for a beginner, and I believe that the ocaml...