flux changed the topic of #ocaml to: Discussions about the OCaml programming language | http://caml.inria.fr/ | 3.11.0 out now! Get yours from http://caml.inria.fr/ocaml/release.html
Associat0r has joined #ocaml
Associat0r has quit [Read error: 104 (Connection reset by peer)]
jeanbon has quit ["J'y trouve un goût d'pomme."]
olegfink has quit [Read error: 60 (Operation timed out)]
Camarade_Tux has quit ["Leaving"]
olegfink has joined #ocaml
Demitar has quit [Remote closed the connection]
bohanlon has quit ["I fear that I must depart for now."]
Waleee has quit []
seafood has quit []
bohanlon has joined #ocaml
bohanlon has quit [Client Quit]
oriba has joined #ocaml
bohanlon has joined #ocaml
^authentic has joined #ocaml
oriba has quit ["Verlassend"]
Demitar has joined #ocaml
vuln has joined #ocaml
<vuln> Hello there :)
<vuln> Good evening
<sanguinev> Good... morning.
authentic has quit [Connection timed out]
^authentic is now known as authentic
<vuln> sanguinev: hehe
<vuln> I have been asking myself about some concepts in OCaml.. Why do the operator (==) answers me equals to any integer variable I compare?
<sanguinev> vuln: Example(s)?
<bjorkintosh> vuln, perhaps it's saying 'yes, that is of type integer too'?
holgr has quit [Read error: 104 (Connection reset by peer)]
holgr has joined #ocaml
<thelema_> vuln: 3 == 5 should return false. if you get otherwise, it's a bug
<vuln> thelema_: look
<vuln> let a = 1 and b = 2;;
<vuln> a and b have different memory address, right?
<vuln> let a = 1 and b = 1;;
<vuln> sorry :}
<vuln> Even though they have different memory address, a == b tells me true
<vuln> ;/
<thelema_> a and b are both ints, not heap-allocated values.
<thelema_> == does a comparison of the value stored in a variable - for heap-allocated values, this is a pointer comparison
<thelema_> for ints (and int-based values: bool, Variants w/o arguments, etc) this compares the values directly
<vuln> thelema_: oh, ok, thanks :D
<thelema_> no problem.
<vuln> It really answered my question :)
jamii_ has quit [Read error: 110 (Connection timed out)]
<vuln> At first I was annoyed about learn Ocaml at university, but it makes me feel better each time more
<vuln> :)
rhar has quit [Read error: 110 (Connection timed out)]
<thelema_> is a good language
rogo has joined #ocaml
ched_ has joined #ocaml
Ched has quit [Read error: 110 (Connection timed out)]
m3ga has joined #ocaml
vuln has quit ["leaving"]
mwhitney__ has quit [Read error: 104 (Connection reset by peer)]
mwhitney__ has joined #ocaml
seafood has joined #ocaml
sporkmonger has quit []
dj_ryan has quit [Remote closed the connection]
ozzloy has quit ["leaving"]
m3ga has quit ["disappearing into the sunset"]
rhar has joined #ocaml
mwhitney__ has quit [Read error: 110 (Connection timed out)]
Yoric[DT] has joined #ocaml
rhar has quit ["Leaving"]
Camarade_Tux has joined #ocaml
Yoric[DT] has quit ["Ex-Chat"]
mwhitney__ has joined #ocaml
Camarade_Tux has quit ["Leaving"]
ttamtta1 has joined #ocaml
kaustuv_ has quit [Read error: 113 (No route to host)]
Alpounet has joined #ocaml
ozzloy has joined #ocaml
mwhitney__ has quit [Read error: 110 (Connection timed out)]
_zack has joined #ocaml
mwhitney__ has joined #ocaml
verte has joined #ocaml
rwmjones_ has joined #ocaml
s4tan has joined #ocaml
mwhitney__ has quit [Read error: 110 (Connection timed out)]
_zack has quit ["Leaving."]
mwhitney__ has joined #ocaml
jedai has quit [Read error: 110 (Connection timed out)]
manju has joined #ocaml
<manju> I am trying to build using godi_console
<manju> I have trouble building tcl/tk
<manju> and I get that this version is not supported
<manju> does anyone have any fixes for this bug ?
filp has joined #ocaml
rwmjones_ has quit ["Closed connection"]
hkBst has joined #ocaml
seafood has quit []
<Alpounet> I get a :
<Alpounet> Fatal error: exception Syntaxerr.Error(_)
<Alpounet> but when adding the following with clause :
<Alpounet> with
<Alpounet> Syntaxerr.Error -> (* do something *)
<Alpounet> I get :
<Alpounet> Error: Unbound constructor Syntaxerr.Error
<Alpounet> any idea ?
seafood has joined #ocaml
seafood has quit []
NightWalker^ has joined #ocaml
<NightWalker^> Is oCaml good for computational linguistics?
mwhitney__ has quit [Read error: 104 (Connection reset by peer)]
mwhitney__ has joined #ocaml
NightWalker^ has left #ocaml []
<kmkaplan> Alpounet: Dont you need a _?
smimram has quit ["bli"]
mwhitney__ has quit [Read error: 104 (Connection reset by peer)]
mwhitney__ has joined #ocaml
smimou has joined #ocaml
mwhitney__ has quit [Read error: 60 (Operation timed out)]
mwhitney__ has joined #ocaml
OChameau has joined #ocaml
sporkmonger has joined #ocaml
jamii_ has joined #ocaml
<Alpounet> kmkaplan, I've done another thing, but this is a fix yep, thanks.
_zack has joined #ocaml
<hcarty> manju: I think godi's build only supports tcl 8.4. Perhaps you have 8.5 installed on your system?
bzzbzz has quit ["leaving"]
<Alpounet> anyone know how we can tell the Toploop module to give the result in another stream than stdout ?
bzzbzz has joined #ocaml
itewsh has joined #ocaml
<tsuyoshi> Format.set_formatter_out_channel maybe?
<Alpounet> or
<Alpounet> val pp_set_formatter_out_channel : formatter -> out_channel -> unit
<Alpounet> I would then just have to get the formatter used by the Toploop and it should be ok
<mrvn> Writing a concurrent functional tree is a dusy.
<Alpounet> Heh.
<Alpounet> What will it be used for ?
<mrvn> my filesystem
<mrvn> It is a B-Tree so I need to wait for nodes to get loaded from disk and I don't want that to block other access.
<Alpounet> Ok.
<Alpounet> Filesystem in OCaml ?
<mrvn> yep
<Alpounet> in a larger project I guess ?
verte has quit ["http://coyotos.org/"]
<mrvn> just for my fileserver
itewsh has quit [Read error: 110 (Connection timed out)]
itewsh has joined #ocaml
<Alpounet> ok
mwhitney__ has quit [Read error: 104 (Connection reset by peer)]
mwhitney__ has joined #ocaml
Amorphous has quit [Read error: 110 (Connection timed out)]
Amorphous has joined #ocaml
mwhitney__ has quit [Read error: 60 (Operation timed out)]
Snark has joined #ocaml
jeanbon has joined #ocaml
mwhitney__ has joined #ocaml
_andre has joined #ocaml
_zack has quit ["Leaving."]
bebui has joined #ocaml
itewsh has quit [Read error: 110 (Connection timed out)]
itewsh has joined #ocaml
_zack has joined #ocaml
itewsh has quit [Read error: 110 (Connection timed out)]
itewsh has joined #ocaml
thelema_ has quit [Read error: 60 (Operation timed out)]
_zack has quit ["Leaving."]
_zack has joined #ocaml
itewsh has quit [Read error: 110 (Connection timed out)]
itewsh has joined #ocaml
Yoric[DT] has joined #ocaml
_zack has quit ["Leaving."]
^authentic has joined #ocaml
s4tan has quit []
<kaustuv> Why does David MENTRE think that the BSD licence is not free? Isn't it strictly free-er than the GPL?
<kaustuv> (In reference to the thread on focalize on caml-list)
<mrvn> .oO(Barin tumor)
<mrvn> .oO(Brain tumor)
* mrvn must have one too. Can't even think straight.
<kaustuv> your file system runs in O(brain tumour) time?
<mrvn> No, that makes David think such things
itewsh has quit [Read error: 110 (Connection timed out)]
itewsh has joined #ocaml
filp has quit ["Bye"]
_andre has quit ["leaving"]
authentic has quit [Connection timed out]
^authentic is now known as authentic
mwhitney__ has quit [Read error: 104 (Connection reset by peer)]
mwhitney__ has joined #ocaml
ttamtta1 has left #ocaml []
jeanbon has quit [Read error: 113 (No route to host)]
thelema_ has joined #ocaml
<rwmjones> anyone seen zack around recently?
mwhitney__ has quit [Read error: 104 (Connection reset by peer)]
mwhitney__ has joined #ocaml
Jeff_ober has joined #ocaml
Yoric[DT] has quit ["Ex-Chat"]
itewsh has quit [Success]
itewsh has joined #ocaml
Camarade_Tux has joined #ocaml
thelema_ has quit [Read error: 104 (Connection reset by peer)]
_zack has joined #ocaml
Jeff_ober has quit []
jeanbon has joined #ocaml
xevz has quit [Read error: 60 (Operation timed out)]
itewsh has quit [Connection timed out]
slash_ has joined #ocaml
itewsh has joined #ocaml
xevz_ has joined #ocaml
ttamttam1 has joined #ocaml
xevz_ is now known as xevz
sporkmonger_ has joined #ocaml
sporkmonger_ has quit [Client Quit]
jeanb-- has joined #ocaml
sporkmonger has quit [Connection timed out]
jeanbon has quit [Nick collision from services.]
jeanb-- is now known as jeanbon
Snark has quit ["Ex-Chat"]
itewsh has quit [Success]
itewsh has joined #ocaml
sporkmonger has joined #ocaml
sporkmonger has quit [Read error: 104 (Connection reset by peer)]
sporkmonger has joined #ocaml
sporkmonger has quit [Remote closed the connection]
|jedai| has joined #ocaml
thelema_ has joined #ocaml
|jedai| has quit [Read error: 110 (Connection timed out)]
ttamttam1 has left #ocaml []
jeremiah has quit [Read error: 104 (Connection reset by peer)]
|jedai| has joined #ocaml
itewsh has quit [Connection timed out]
itewsh has joined #ocaml
jeremiah has joined #ocaml
Alpounet has quit ["Ex-Chat"]
vuln has joined #ocaml
hkBst has quit [Read error: 104 (Connection reset by peer)]
itewsh has quit [Connection timed out]
itewsh has joined #ocaml
psnively has joined #ocaml
<psnively> Greetings.
jeanbon has quit ["J'y trouve un goût d'pomme."]
itewsh has quit [Read error: 60 (Operation timed out)]
oriba has joined #ocaml
itewsh has joined #ocaml
_zack has quit ["Leaving."]
Associat0r has joined #ocaml
Associat0r has quit [Remote closed the connection]
|jedai| is now known as jedai