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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

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

I've sent in this list several messages concerning the _ in types such as in '_a or _[`A]. This restriction of polymorphism to syntactical values has been ...
1 Nov 20, 2002
8:38 am

Julien Cohen
jucohen91
Send Email

I am missing something obvious. I am writing a little program which takes two parameters: <source (bron)> and <destination (bestemming)> which must both be...
6 Nov 20, 2002
8:29 am

Johann Spies
jspies@...
Send Email

Hi All, I have a module (Module1) which has a record type type myrec = { field1: int; field2: int; } This type is exported (using the MLI file). This module...
2 Nov 18, 2002
4:59 am

Daniel de Rauglaudre
daniel.de_rauglaudre@...
Send Email

Hi, if I have a [`A] I can write a function that gives me a [>`A] with the same value : Objective Caml version 3.04 # let (v:[`A])=`A;; val v : [ `A] = `A #...
3 Nov 15, 2002
9:02 am

jucohen91
Send Email

Hi, I wonder why my class interface hides the 'new' constructor in the following example. I have a foo class in foo.ml ... class foo = object method bar...
2 Nov 14, 2002
11:49 am

Remi VANICAT
dl_ens
Send Email

Hello to everybody. I've found a grep-like ocaml program at http://www.oefai.at/~markus/ocaml_sources/pcre-ocaml-4.28.3/examples/pcregrep/ Does anybody know...
4 Nov 12, 2002
11:37 pm

Stalkern 2
stalkern2
Send Email

Hello to everybody I often meet the word "blit" in function names, such as Graphics.blit_image, StringLabels.blit ... what does b l i t stand for? Thank you ...
2 Nov 12, 2002
9:20 am

Stefano Zacchiroli
zack@...
Send Email

Call me an idiot. I thought my exe would be free of any 'runtime&#39; environments... .. an EXE compiled in cygwin requires the cygwin environment?? I want to have...
5 Nov 6, 2002
4:59 pm

Kontra, Gergely
kgergely@...
Send Email

Can anyone explain why the type of s is not the same in these two sessions (ocaml 3.04) ? # let s = `A :: [];; val s : [> `A] list = [`A] # let cons e l =...
4 Nov 6, 2002
3:08 pm

Remi VANICAT
dl_ens
Send Email

I want to use hashtable on my objects which all has a method get_string:string. but i can only write the code like these: module SeqHashType = struct type t=...
1 Nov 4, 2002
7:04 am

climb
onlyclimb
Send Email

For the ones interested; I've put on my site (see below) in Caml section a little program named 'morpion&#39; which try to solve the 'morpion solitaire' game (see...
1 Oct 31, 2002
4:02 pm

AKA El Bofo
eul_bofo
Send Email

Hi all, Just a curiosity related to something (or one of the many things) I have never understood. For list management there's val nth : 'a list -> int -> 'a ...
2 Oct 30, 2002
10:36 am

Claudio Sacerdoti Coen
sacerdot@...
Send Email

... Administrator@STONE ~/work/xmls $ objdump main.exe -p | grep .dll DLL Name: cygncurses6.dll DLL Name: cygwin1.dll 20718 668 dll_crt0__FP11per_process ...
1 Oct 29, 2002
4:38 pm

Rich
vaykent
Send Email

I know what you're thinking - not another one of those questions. This is different that everything I've found. I've seen the other threads. I've installed...
6 Oct 29, 2002
7:01 am

Rich
vaykent
Send Email

I LOVE YOU!!!! It compiled with no errors.... I'm off to test it on a 'clean&#39; windows box... ... if this works..... I LOVE YOU!!! -Rich P.s. - I want to post...
1 Oct 29, 2002
6:39 am

Rich
vaykent
Send Email

I have a problem with a maximax function (I want to maximize at each step, for this is a solitaire game ;-). let rec explorer_niveau i prof table score_max...
1 Oct 29, 2002
3:08 am

AKA El Bofo
eul_bofo
Send Email

... let find_pos e l = let rec find_pos_ e l p = match l with ... parenthesis ! in find_pos_ e l 0 What you where doing without parenthesis was (find_pos_ e t...
15 Oct 26, 2002
1:44 pm

Remi VANICAT
dl_ens
Send Email

Hi! Writing a small list function I run into this problem, and cannot find the reason for the error message. let find_pos e l = let rec find_pos_ e l p = match...
3 Oct 24, 2002
11:38 pm

Remi VANICAT
dl_ens
Send Email

Hello I'd like a program to be executed on all files in a directory, so I was thinking of something like what in bash script would be for filename in *.$1 do ...
10 Oct 23, 2002
5:25 pm

Stalkern 2
stalkern2
Send Email

Dear ocaml_beginners list I'm trying to use the Event module, but it doesn't work well. When I use some functions, I get an error message as follows. # let ch...
4 Oct 23, 2002
8:25 am

matsui@...
Send Email

Hi! Is there a FAQ about using syntaxes? I know I can convert old-style ocaml programs to new style, but can I do this in the other way? And how to convert...
2 Oct 21, 2002
1:24 pm

Daniel de Rauglaudre
daniel.de_rauglaudre@...
Send Email

I was looking to see how various the world is for what concerns parsing. In particular, I was asking myself: is there a quickest way to parse things, than...
10 Oct 21, 2002
11:36 am

Stalkern 2
stalkern2
Send Email

Hello, I am new to ocamldebug and trying to set a breakpoint. (ocd) break Bdbfs.dir_addentry Loading program... done. The module path Bdbfs is not yet...
3 Oct 19, 2002
12:44 pm

castein91
Send Email

Is there a built-in function for outputting the hex of a string's char codes ? I.e. something that does this : let rec hexstring s = let l = String.length s in...
2 Oct 19, 2002
10:36 am

Alain Frisch
frisch@...
Send Email

I want to select each xth item from a list into a new list. I don't understand why I get a syntax error in the following function: # let elke_nde getal lys =...
2 Oct 19, 2002
9:46 am

Daniel de Rauglaudre
daniel.de_rauglaudre@...
Send Email

When I chose to learn OCaml as my "language of the year" it seemed like a good choice. I had some basic requirements for a language: 1) There be a free ( for...
4 Oct 18, 2002
7:06 pm

olczyk@...
tlolczyk
Send Email

On Fri, 18 Oct 2002 12:56:17 +0200, Sven Luther ... But then why does it call cl.exe? ... But then why does cameleon use ocamlc? Obviously you want to use...
2 Oct 18, 2002
7:04 pm

olczyk@...
tlolczyk
Send Email

Hello, I'm trying to manage with constructed types in a particular way, can anyone tell me if it is a "really bad" way? I want to use 'a lists with an...
3 Oct 18, 2002
12:33 pm

Remi VANICAT
dl_ens
Send Email

Hi I can't remember whether can sources using Camlp4 parsers be compiled with ocamlopt. I'm compiling with flags -I +camlp4 gramlib.cmxa but as soon as there...
7 Oct 17, 2002
5:06 pm

Remi VANICAT
dl_ens
Send Email

As I planned to do since a little while, I've put online the archives of this ML. They are now at ...
1 Oct 11, 2002
3:08 pm

Stalkern 2
stalkern2
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