clog has joined #ocaml
zpe has joined #ocaml
manizzle has quit [Ping timeout: 256 seconds]
q66 has quit [Quit: Leaving]
zpe has quit [Ping timeout: 264 seconds]
palomer has quit [Ping timeout: 256 seconds]
csakatoku has quit [Remote host closed the connection]
zpe has joined #ocaml
ygrek has joined #ocaml
zpe has quit [Ping timeout: 264 seconds]
lusory has quit [Quit: leaving]
lusory has joined #ocaml
darkf has joined #ocaml
ollehar has quit [Ping timeout: 256 seconds]
BiDOrD has joined #ocaml
BiDOrD_ has quit [Ping timeout: 268 seconds]
zpe has joined #ocaml
zpe has quit [Ping timeout: 248 seconds]
shinnya has quit [Ping timeout: 264 seconds]
zpe has joined #ocaml
ygrek has quit [Ping timeout: 256 seconds]
csakatoku has joined #ocaml
zpe has quit [Ping timeout: 264 seconds]
mye_ has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
mye_ is now known as mye
ygrek has joined #ocaml
<
levi>
Hmm. How can I tell what line is throwing a 'Not_found' exception?
zpe has joined #ocaml
avsm has joined #ocaml
pkrnj has quit [Ping timeout: 240 seconds]
pkrnj has joined #ocaml
zpe has quit [Ping timeout: 246 seconds]
pkrnj has quit [Client Quit]
mye has quit [Quit: mye]
zpe has joined #ocaml
ygrek has quit [Remote host closed the connection]
ygrek has joined #ocaml
zpe has quit [Ping timeout: 268 seconds]
<
gasche>
levi: build with -g, and then OCAMLRUNPARAM="b" (backtraces)
zpe has joined #ocaml
zpe has quit [Ping timeout: 246 seconds]
tlockney has quit [Quit: I may return, one day...]
tlockney has joined #ocaml
ggole has joined #ocaml
djcoin has joined #ocaml
zpe has joined #ocaml
gautamc has quit [Read error: Connection reset by peer]
gautamc has joined #ocaml
zpe has quit [Ping timeout: 276 seconds]
ygrek has quit [Remote host closed the connection]
ygrek has joined #ocaml
csakatok_ has joined #ocaml
avsm has quit [Quit: Leaving.]
csakatoku has quit [Ping timeout: 256 seconds]
ttamttam has joined #ocaml
ttamttam has quit [Client Quit]
wmeyer has joined #ocaml
yezariaely has joined #ocaml
zpe has joined #ocaml
ttamttam has joined #ocaml
demonimin has joined #ocaml
Arsenik has joined #ocaml
LeNsTR|away is now known as lenstr
zpe has quit [Ping timeout: 246 seconds]
wmeyer has quit [Ping timeout: 260 seconds]
avsm has joined #ocaml
avsm has quit [Ping timeout: 248 seconds]
ygrek has quit [Remote host closed the connection]
ygrek has joined #ocaml
Simn has joined #ocaml
zRecursive has quit [Remote host closed the connection]
zpe has joined #ocaml
wmeyer has joined #ocaml
lenstr has quit [Changing host]
lenstr has joined #ocaml
zpe has quit [Ping timeout: 264 seconds]
avsm has joined #ocaml
Arsenik has quit [Remote host closed the connection]
avsm has quit [Ping timeout: 268 seconds]
avsm has joined #ocaml
cago has joined #ocaml
mika1 has joined #ocaml
zpe has joined #ocaml
Simn has quit [Ping timeout: 276 seconds]
adrien_o1w is now known as adrien_oww
Neros has joined #ocaml
thomasga has joined #ocaml
wmeyer has quit [Ping timeout: 260 seconds]
ben_zen has joined #ocaml
gautamc has quit [Ping timeout: 256 seconds]
gautamc has joined #ocaml
adrien_oww has quit [Ping timeout: 256 seconds]
adrien_oww has joined #ocaml
ygrek has quit [Remote host closed the connection]
ygrek has joined #ocaml
ulfdoz has joined #ocaml
wmeyer has joined #ocaml
djcoin has quit [Quit: WeeChat 0.4.0]
ontologiae has joined #ocaml
yacks has joined #ocaml
ben_zen has quit [Quit: leaving]
malo has joined #ocaml
wmeyer has quit [Ping timeout: 276 seconds]
avsm has quit [Quit: Leaving.]
ulfdoz has quit [Ping timeout: 242 seconds]
csakatok_ has quit [Remote host closed the connection]
csakatoku has joined #ocaml
ulfdoz has joined #ocaml
avsm has joined #ocaml
mcclurmc has joined #ocaml
avsm has quit [Ping timeout: 260 seconds]
ulfdoz has quit [Ping timeout: 240 seconds]
ygrek has quit [Ping timeout: 260 seconds]
csakatoku has quit [Remote host closed the connection]
Arsenik has joined #ocaml
Arsenik has quit [Client Quit]
csakatoku has joined #ocaml
ggole has quit [Ping timeout: 268 seconds]
beckerb has joined #ocaml
beckerb has quit [Read error: Connection reset by peer]
beckerb_ has joined #ocaml
avsm has joined #ocaml
dsheets has joined #ocaml
avsm has quit [Ping timeout: 246 seconds]
ggole has joined #ocaml
ttamttam has quit [Quit: ttamttam]
Drup has joined #ocaml
avsm has joined #ocaml
q66 has joined #ocaml
avsm has quit [Ping timeout: 268 seconds]
tane has joined #ocaml
PM has quit [Ping timeout: 245 seconds]
csakatoku has quit [Remote host closed the connection]
ttamttam has joined #ocaml
csakatoku has joined #ocaml
avsm has joined #ocaml
csakatoku has quit [Remote host closed the connection]
avsm has quit [Ping timeout: 240 seconds]
Drup has quit [Ping timeout: 248 seconds]
mye has joined #ocaml
beckerb_ has quit [Ping timeout: 245 seconds]
ttamttam has quit [Quit: ttamttam]
ollehar has joined #ocaml
malo_ has joined #ocaml
malo has quit [Ping timeout: 260 seconds]
malo_ is now known as malo
avsm has joined #ocaml
zpe has quit [Remote host closed the connection]
avsm has quit [Ping timeout: 264 seconds]
PM has joined #ocaml
beckerb_ has joined #ocaml
Drup has joined #ocaml
zpe has joined #ocaml
<
yezariaely>
is there an easy way to create a int list form 1 to n ?
<
Drup>
by "easy" you mean a function that will do it for you ? not in the standard library
<
yezariaely>
ok, thx.
<
dsheets>
yezariaely, let list_from_1_to n = let rec loop k l = if k < 1 then l else loop (k-1) (k::l) in loop n []
avsm has joined #ocaml
<
yezariaely>
dsheets: thx. I know how to write it myself, but I don't want to write anything that is already available ;-)
<
yezariaely>
wondered if there is something similar to haskells [1..20]
<
dsheets>
yezariaely, in most stdlib replacements, yes
<
Drup>
there is in batteries
<
yezariaely>
Drup: which is named?
<
yezariaely>
ehm. what is the funcitons name?
<
Drup>
for enum, (1 --- 100) I think
<
yezariaely>
wow nice
avsm has quit [Ping timeout: 258 seconds]
<
yezariaely>
Drup: thx.
avsm has joined #ocaml
avsm has quit [Ping timeout: 276 seconds]
troydm has quit [Ping timeout: 264 seconds]
troydm has joined #ocaml
tobiasBora has joined #ocaml
yezariaely has quit [Quit: Leaving.]
csakatoku has joined #ocaml
avsm has joined #ocaml
eikke has joined #ocaml
avsm has quit [Ping timeout: 276 seconds]
smondet has joined #ocaml
djcoin has joined #ocaml
avsm has joined #ocaml
palomer has joined #ocaml
avsm has quit [Quit: Leaving.]
tobiasBora has quit [Quit: Konversation terminated!]
yezariaely has joined #ocaml
darkf has quit [Quit: Leaving]
csakatoku has quit [Remote host closed the connection]
iZsh has quit [Excess Flood]
iZsh has joined #ocaml
zpe has quit [Remote host closed the connection]
djcoin has quit [Quit: WeeChat 0.4.0]
cago has left #ocaml []
mika1 has quit [Quit: Leaving.]
zpe has joined #ocaml
zpe has quit [Ping timeout: 248 seconds]
zpe has joined #ocaml
zpe_ has joined #ocaml
zpe has quit [Read error: Connection reset by peer]
mort___ has joined #ocaml
ollehar has quit [Ping timeout: 256 seconds]
mort___ has quit [Client Quit]
skchrko has quit [Quit: Leaving]
thomasga has quit [Quit: Leaving.]
tane has quit [Quit: Verlassend]
ollehar has joined #ocaml
Neros has quit [Ping timeout: 255 seconds]
palomer has quit [Ping timeout: 246 seconds]
thomasga has joined #ocaml
thomasga has quit [Quit: Leaving.]
beckerb_ has quit [Ping timeout: 245 seconds]
osa1 has joined #ocaml
mcclurmc has quit [Ping timeout: 276 seconds]
shinnya has joined #ocaml
mye has quit [Quit: mye]
ulfdoz has joined #ocaml
osa1 has quit [Ping timeout: 246 seconds]
ulfdoz has quit [Ping timeout: 248 seconds]
Drup has quit [Ping timeout: 276 seconds]
avsm has joined #ocaml
mye has joined #ocaml
avsm has quit [Quit: Leaving.]
tobiasBora has joined #ocaml
zpe_ has quit [Remote host closed the connection]
fmardini has joined #ocaml
fmardini has quit [Read error: Connection reset by peer]
yezariaely has quit [Quit: Leaving.]
yezariaely has joined #ocaml
yezariaely has quit [Remote host closed the connection]
yezariaely1 has joined #ocaml
gautamc has quit [Read error: Connection reset by peer]
fmardini has joined #ocaml
gautamc has joined #ocaml
fmardini has quit [Client Quit]
tlockney has quit [Excess Flood]
tlockney has joined #ocaml
rwmjones has quit [Ping timeout: 240 seconds]
rwmjones has joined #ocaml
Drup has joined #ocaml
zpe has joined #ocaml
ollehar has quit [Ping timeout: 268 seconds]
zpe has quit [Ping timeout: 276 seconds]
ontologiae_ has joined #ocaml
ontologiae has quit [Read error: Connection reset by peer]
ulfdoz has joined #ocaml
Neros has joined #ocaml
zpe has joined #ocaml
zpe has quit [Ping timeout: 245 seconds]
ulfdoz has quit [Ping timeout: 264 seconds]
gautamc has quit [Ping timeout: 264 seconds]
ulfdoz has joined #ocaml
ollehar has joined #ocaml
mye has quit [Quit: mye]
gautamc has joined #ocaml
zpe has joined #ocaml
zpe has quit [Ping timeout: 246 seconds]
Neros has quit [Ping timeout: 268 seconds]
mye has joined #ocaml
eikke has quit [Ping timeout: 246 seconds]
tobiasBora has quit [Ping timeout: 264 seconds]
tobiasBora has joined #ocaml
tobiasBora has quit [Client Quit]
ulfdoz has quit [Ping timeout: 240 seconds]
Neros has joined #ocaml
osa1 has joined #ocaml
metasyntax has quit [Quit: Leaving]
ontologiae_ has quit [Ping timeout: 264 seconds]
cthuluh has quit [Ping timeout: 240 seconds]
cthuluh has joined #ocaml
zpe has joined #ocaml
zpe has quit [Ping timeout: 248 seconds]
osa1 has quit [Quit: Konversation terminated!]
palomer has joined #ocaml
dsheets has quit [Ping timeout: 276 seconds]
patronus_ has joined #ocaml
zpe has joined #ocaml
patronus has quit [Read error: Operation timed out]
Neros has quit [Ping timeout: 248 seconds]
zpe has quit [Ping timeout: 248 seconds]
Neros has joined #ocaml
flux has quit [Remote host closed the connection]
flux has joined #ocaml
iZsh has quit [Excess Flood]
iZsh has joined #ocaml
camel227 has joined #ocaml
dsheets has joined #ocaml
yezariaely1 has quit [Quit: Leaving.]
osa1 has joined #ocaml
zpe has joined #ocaml
palomer has quit [Ping timeout: 248 seconds]
zpe has quit [Ping timeout: 264 seconds]
smondet has quit [Quit: Weekend!]
milosn has quit [Ping timeout: 264 seconds]
malo has quit [Quit: Leaving]
pkrnj has joined #ocaml
camel227 has quit [Ping timeout: 276 seconds]
zpe has joined #ocaml
zpe has quit [Ping timeout: 256 seconds]
zRecursive has joined #ocaml
pkrnj has quit [Quit: Computer has gone to sleep.]
pkrnj has joined #ocaml
zpe has joined #ocaml
zpe has quit [Ping timeout: 248 seconds]
ollehar has quit [Ping timeout: 277 seconds]
ollehar has joined #ocaml
darkf has joined #ocaml
avsm has joined #ocaml
palomer has joined #ocaml
zpe has joined #ocaml
zpe has quit [Ping timeout: 240 seconds]
pkrnj has quit [Quit: Computer has gone to sleep.]
imalsogreg has quit [Read error: Operation timed out]
imalsogreg has joined #ocaml
Drup has quit [Quit: Leaving.]