docelic is now known as docelic|sleepo
lament has joined #ocaml
Vincenz has quit []
systems has left #ocaml []
lus|wazze has joined #ocaml
rhil_zzz is now known as rhil
Smerdyakov has quit ["sleep"]
Kinners has joined #ocaml
wax has quit [Remote closed the connection]
wax has joined #ocaml
mattam has joined #ocaml
karryall has quit ["ERC vVersion 3.0 $Revision: 1.328 $ (IRC client for Emacs)"]
lament has quit ["I AM NOT A 32 YEAR OLD WOMAN"]
stefp has joined #ocaml
rhil is now known as rhil_zzz
docelic|sleepo is now known as docelic
stefp has quit ["Client Exiting"]
lus|wazze has quit ["Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Univ]
TachYon26 has joined #ocaml
docelic has quit [Remote closed the connection]
docelic has joined #ocaml
mattam_ has joined #ocaml
Kinners has left #ocaml []
d-bug has joined #ocaml
mattam has quit [Read error: 110 (Connection timed out)]
mattam_ is now known as mattam
karryall has joined #ocaml
d-bug has quit [Read error: 60 (Operation timed out)]
__DL__ has joined #ocaml
Smerdyakov has joined #ocaml
karryall has quit [Read error: 101 (Network is unreachable)]
Yurik_ has joined #ocaml
Yurik has quit [Read error: 104 (Connection reset by peer)]
Smerdyakov has quit ["brb"]
Smerdyakov has joined #ocaml
guigui has joined #ocaml
reltuk has quit [Read error: 104 (Connection reset by peer)]
foxster has quit [Read error: 104 (Connection reset by peer)]
docelic has quit ["Client Exiting"]
stefp has joined #ocaml
reltuk has joined #ocaml
karryall has joined #ocaml
stefp has quit [Read error: 104 (Connection reset by peer)]
stefp has joined #ocaml
Esaj has joined #ocaml
docelic has joined #ocaml
Esaj has quit ["Client exiting"]
guigui has left #ocaml []
<
async>
do all functions need arguments?
<
async>
nvm, i guess you can put () after the name
<
Smerdyakov>
Every function needs exactly one argument.
Yurik__ has joined #ocaml
Yurik_ has quit [Read error: 104 (Connection reset by peer)]
TachYon26 has quit [Remote closed the connection]
rhil_zzz is now known as rhil
Smerdyakov has quit ["ugh"]
Smerdyakov has joined #ocaml
foxster has joined #ocaml
Vincenz has joined #ocaml
mrvn has joined #ocaml
<
mrvn>
I get an error in my prog an can't find it:
<
mrvn>
| Node (Gap_Node (_, gap_tbl) as gap_node, Helix_node (helix, helix_tbl) as helix_node, node_tbl)
<
mrvn>
The constructor Node expects 3 argument(s),
<
mrvn>
but is here applied to 2 argument(s)
<
mrvn>
Args, got it. i have to () the as constructs
asqui has quit [Read error: 104 (Connection reset by peer)]
asqui has joined #ocaml
giedi has joined #ocaml
docelic has quit ["Client Exiting"]
docelic has joined #ocaml
Riastrad1 has joined #ocaml
giedi has quit [Remote closed the connection]
Riastradh has quit [Read error: 60 (Operation timed out)]
Smerdyakov has quit ["now I eat"]
stefp has quit [Read error: 110 (Connection timed out)]
<
mattam>
hmm, no do... while in caml ?
<
emu>
there is something .. go look it up
<
mellum>
Use recursion :)
<
mattam>
mellum: well, that's what i'm doing now
<
mattam>
there is while ... do ... done; but no do ... while ...;
giedi has joined #ocaml
Smerdyakov has joined #ocaml
stefp has joined #ocaml
stefp has quit [Read error: 110 (Connection timed out)]
stefp has joined #ocaml
giedi has quit ["Client exiting"]
<
mrvn>
How do I test if a Hashtbl is empty?
<
mattam>
do a hashtbl_empty using fold_left i think