Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ocaml_beginners · Ocaml Beginners

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
  Newest  |  < Newer  |  Older >  |  Oldest
Topics Messages Latest Post

Consider the next code in a gui environment. # let b = Sys.command("ncpmount /mnt/novell js");; Could not find mount point /tmp/js: No such file or directory ...
12 Jun 14, 2002
1:42 pm

Johann Spies
jspies@...
Send Email

Hello, I'm writing program that will show and compare few sorting algorithms in graphical mode. I want to show every step of all of the algorithms. That means...
1 Jun 13, 2002
2:15 pm

kenzo_ahikawa
Send Email

people.. I have 2 programs sharing some data...how do i do that.. please look at the code below and help me... Animesh (*prog1.ml .. will be compiled after...
1 Jun 12, 2002
3:19 pm

animesh_pathak
Send Email

hello people, I seem to have a very strange problem, I have a client server code (2 separate programs) which transmit data using Marshal.to_channel and...
1 Jun 12, 2002
1:24 pm

animesh_pathak
Send Email

Hi, I am amit, i am a grad student of UIUC.I have to do a project in ocaml for one grade point. The project should be on the grounds of adding a small feature...
8 Jun 12, 2002
1:32 am

samiam13760
Send Email

I have a problem with type names in functor applications. Here's an example: -- apple.mli -- type apple = Apple -- baker.mli -- module type FRUIT = sig type...
2 Jun 11, 2002
8:00 pm

bwv211mail
Send Email

Hello! I'm writing an interpreter of query on xml files from an high level query language to an implementation of XQuery (galax, written in ocaml). I need to...
5 Jun 4, 2002
2:38 pm

renzolon
Send Email

Hello, in the ocaml-toplevel of Ocaml-distribution 3.04 there is no possibility of using streams with [< >]-notation. The Stream-module is available, but not...
4 May 31, 2002
1:54 pm

Remi VANICAT
dl_ens
Send Email

Hello, I want to translate the following c++ data structure into ocaml: struct node { node* left; node* righ; }; The closest thing in ocaml that I've tried is...
3 May 29, 2002
7:48 pm

pronnquist
Send Email

hello there, This regarding the 'Marshal&#39;ing I am trying to do. could you please send me a sample code (just a few lines..) which can compile and show the use...
3 May 29, 2002
8:46 am

animesh_pathak
Send Email

I am slowly poking my way through the creation of a filename module. I've got this in fname.mli ... type directory type file type absolute type relative type...
6 May 28, 2002
7:44 pm

Matt Armstrong
matt_arms
Send Email

hello people, I am new to ocaml.. when i tried this code.. it compiled perfectly fine but when i ran it.. it gave me *no* output at all!! it just ended... can...
3 May 28, 2002
2:50 pm

animesh_pathak
Send Email

I've been trying to subscribe to the main ocaml list and have been getting nothing from them after several weeks of trying. What's going on there? Have they...
2 May 28, 2002
11:52 am

mandrake_bond
Send Email

Hello to everybody I'm wondering whether in Ocaml one can roll up a string:string and then use a command that takes that string as a command, something like:...
6 May 24, 2002
7:57 am

Mattias Waldau
mattias.waldau@...
Send Email

As my first "real" OCaml module, I want to produce a filename module that will type the different kinds of filename components and only allow me to combine...
11 May 21, 2002
6:56 pm

Matt Armstrong
matt_arms
Send Email

Hi, I wanted to test Caml's laziness in parameter evaluation... I explain what kind of laziness I am speaking about. (Generally, not Caml-specifically.) I have...
5 May 19, 2002
10:47 pm

Nicolas Barbulesco
nbarbulesco
Send Email

Hello, I heard about OpenGL-Libraries for Ocaml. I planned to use them later, but first I want to explore the capabilities of the Graphics-Module. Are there...
1 May 18, 2002
2:45 pm

Oliver Bandel
oliver@...
Send Email

Sorry, me again ;-) after playing around some more time with OCaml, I'm wondering how to read from a file in a "good" manner with OCaml. Mostly when reading a...
5 May 15, 2002
12:43 pm

Johann Spies
jspies@...
Send Email

... Actualy I would prefer the "ignore" function : let skryflys l lys = ignore (List.map (...) lys); close_out l;; Which is "almost" the same as "let _ = "...
1 May 14, 2002
3:22 pm

Warp
ncannasse
Send Email

... # let skryflys l lys = List.map (Printf.fprintf l "%s\n") lys; close_out l;; Toplevel input: # let skryflys l lys = List.map (Printf.fprintf l "%s\n") lys;...
4 May 14, 2002
3:21 pm

Johann Spies
jspies@...
Send Email

Hello, I want to play with ocamldap, but compiling the latest version (0.3) trigger a syntax error on a simple parser: philou@philou:~/src/ocamldap-0.3$ make ...
2 May 10, 2002
12:57 pm

stalkern2
Send Email

oops, forgot to mention my setup: current debian sid, with the following caml packages: philou@philou:~$ dpkg -l | grep -i caml ii camlimages 2.00-1...
1 May 10, 2002
11:17 am

Philippe Strauss
philou@...
Send Email

Hello, I got a problem, that only occurs in compilation and not in the toplevel (but the toplevel prints warnings about the type (should be unit)). Here is the...
6 May 9, 2002
10:34 am

stalkern2
Send Email

Hello to everybody I've been studying the beautiful example of XML-oriented parsing written by Nicolas Cannasse and called XML Light. ... Code ... 1) Check out...
2 May 9, 2002
8:12 am

stalkern2
Send Email

I'm working through some of the exercises available in the O'Reily book that is available online at <http://caml.inria.fr/oreily-book/>. Here is what I came up...
3 May 9, 2002
4:17 am

matt_arms
Send Email

Hi All, I have a type type testTyp = First | Second | Third | Umpteenth Is there a library function with the following behavior? f (First) = Second f (Second)...
2 May 7, 2002
8:01 am

Martin Jambon
m.jambon@...
Send Email

... You can trick by doing ( only if your constructors does not have any parameters ) : let f x = (Obj.magic ((Obj.magic x : int) + 1) : 'a) but that won't...
1 May 6, 2002
6:58 pm

Warp
ncannasse
Send Email

I tried the profiling example in the new Ocaml book, p.281ff. But I am not getting any information that seems worthwhile. I hope someone can help me... $ cat...
5 May 3, 2002
8:08 pm

bwv211mail
Send Email

In order to debug my doubly linked list implementation (and learn how caml's pretty-printing facility works), I wrote a function <p> <code> ...
1 May 3, 2002
12:54 pm

s guy
sguy_yugs
Send Email

A couple of questions about classes: (1) What is the difference between a class with all virtual methods and a class type? Are they interchangeable? (2) Also,...
3 May 3, 2002
6:42 am

bwv211mail
Send Email
  Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help