shp changed the topic of #ocaml to: Discussions about the OCaml programming language | http://caml.inria.fr/ | OCaml 4.00.1 http://bit.ly/UHeZyT | nohttp://www.ocaml-lang.org | Public logs at http://tunes.org/~nef/logs/ocaml/
milosn has joined #ocaml
ulfdoz_ has joined #ocaml
milosn_ has quit [Ping timeout: 240 seconds]
ulfdoz has quit [Ping timeout: 252 seconds]
ulfdoz_ is now known as ulfdoz
RagingDave has quit [Quit: Ex-Chat]
tac_ has quit [Ping timeout: 245 seconds]
emmanuelux has quit [Remote host closed the connection]
tac has joined #ocaml
madroach has quit [Ping timeout: 248 seconds]
lolcathost has quit [Read error: Connection reset by peer]
madroach has joined #ocaml
lolcathost has joined #ocaml
<benmachine> I am running ocamlc -o build/misc.cmo -c misc.ml -I build
<benmachine> and getting Error: Could not find the .cmi file for interface misc.mli.
<benmachine> misc.cmi is in build/
<benmachine> am I misunderstanding what -I does?
<benmachine> how do I add a directory to the path searched for .cmi files?
<thelema> odd; -I should do what you're thinking
<thelema> is build/misc.cmi empty?
<benmachine> nope
<benmachine> hmm
<benmachine> ah, it depends which order you put things in
<benmachine> ocamlc -o build/misc.cmo -c -I build misc.ml
<benmachine> seems to work fine
<benmachine> oh, and the order I specify the object files when linking is important too :(
<benmachine> (I don't remember if this is normal or not, I'm spoiled by ghc --make :P )
<Qrntz> you could use an automated building system like ocamlbuild, that'll figure out all of the dependencies for you
<thelema> benmachine: link order is very important; modules are executed in link order
<benmachine> thelema: that makes sense
<benmachine> just didn't think of it like that
<benmachine> ok so now I am doing, ocamlbuild -pkg unix find_but_CVS.byte; this works but prints Warning: tag "package" does not expect a parameter, but is used with parameter "unix"
<thelema> -tag use_unix
<benmachine> instead of -pkg?
<thelema> although I always use a _tags file
<thelema> true: package(unix) <- put in _tags file
<thelema> and compile with -use-ocamlfind
<thelema> I'm assuming you're using at least OCaml 3.12
<benmachine> yes
mye has joined #ocaml
<benmachine> okay, awesome, thanks
<benmachine> my program compiles fine now; I get to start worrying about why it doesn't do what I want :)
lolcathost has quit [Quit: When I come back, please tell me in what new ways you have decided to be completely wrong.]
lolcathost has joined #ocaml
lasagna is now known as lasagna|drunk
lolcathost has quit [Quit: When I come back, please tell me in what new ways you have decided to be completely wrong.]
lolcathost has joined #ocaml
lolcathost has quit [Quit: When I come back, please tell me in what new ways you have decided to be completely wrong.]
PM has quit [Ping timeout: 246 seconds]
PM has joined #ocaml
mattrepl has quit [Quit: mattrepl]
lolcathost has joined #ocaml
ulfdoz has quit [Ping timeout: 260 seconds]
hongboz has quit [Ping timeout: 264 seconds]
lolcathost has quit [Ping timeout: 260 seconds]
lolcathost has joined #ocaml
lolcathost has quit [Ping timeout: 260 seconds]
mye has quit [Quit: mye]
lolcathost has joined #ocaml
lolcathost has quit [Client Quit]
ttamttam has joined #ocaml
lolcathost has joined #ocaml
gour has joined #ocaml
ttamttam has quit [Read error: Connection reset by peer]
ttamttam has joined #ocaml
ttamttam has quit [Read error: Connection reset by peer]
ttamttam has joined #ocaml
Demitar has quit [Ping timeout: 240 seconds]
mye has joined #ocaml
tac is now known as sudlowbot
sudlowbot is now known as tac
weie has joined #ocaml
tac is now known as sudlowbot
sudlowbot is now known as tac
tac has left #ocaml []
milosn has quit [Remote host closed the connection]
tac has joined #ocaml
ontologiae has joined #ocaml
djcoin has joined #ocaml
<tac> Does Ocaml allow similarly named constructors to appear in multiple types?
<tac> I can't, for instance, do: type tree1 = Empty | Binary of tree1 * tree1;; and then turn around and do tree2 = Empty | Tertiary of tree2 * tree2 * tree2;;, can I?
<adrien> not in the same namespace
<adrien> for that exemple, I'd use an option type instead
<adrien> (well, it allows them to be in the same namespace but you won't be able to access the older one)
<tac> What defines the namespace boundaries?
<tac> Modules?
<tac> Or is there a namespace keyword of some kind?
<adrien> modules
* adrien has to go, bbl
<tac> ty
ontologiae has quit [Ping timeout: 252 seconds]
hkBst has joined #ocaml
thomasga has joined #ocaml
Demitar has joined #ocaml
hkBst has quit [Ping timeout: 272 seconds]
<lasagna|drunk> how do arrays and lists differ?
Cyanure has joined #ocaml
thomasga1 has joined #ocaml
hkBst has joined #ocaml
hkBst has quit [Changing host]
hkBst has joined #ocaml
thomasga has quit [Ping timeout: 260 seconds]
sgnb has quit [Read error: Connection reset by peer]
sgnb has joined #ocaml
hkBst has quit [Read error: Connection reset by peer]
<tac> lasagna|drunk: arrays are mutable. Lists are immutable
<tac> Arrays are O(1) access
<tac> Lists are O(n)
<tac> Lists are better for many functional algorithms
<tac> Arrays are better for doing things fast (like you would in C)
mika1 has joined #ocaml
RagingDave has joined #ocaml
thomasga1 has quit [Ping timeout: 240 seconds]
thomasga has joined #ocaml
sgnb has quit [Read error: Connection reset by peer]
sgnb has joined #ocaml
cago has joined #ocaml
chambart has joined #ocaml
<orbitz> arrays give you access to low level shit too, like mmap!
wuttf_ has joined #ocaml
hkBst_ has joined #ocaml
hkBst_ has quit [Changing host]
hkBst_ has joined #ocaml
<adrien_oww> orbitz: bigarrays, no?
<orbitz> bigassarrays
lasagna|drunk is now known as lasagna
<tac> You can have big ass lists too. It's just a little more silly
<lasagna> I see
hkBst__ has joined #ocaml
hkBst_ has quit [Ping timeout: 276 seconds]
<orbitz> tac: not for mmap
hkBst__ has quit [Ping timeout: 260 seconds]
ontologiae has joined #ocaml
<wuttf_> Ouch, this is one of the ugliest http://rosettacode.org/wiki/Hello_world/Web_server#OCaml
<wuttf_> On that page. Is there a nicer way?
<wuttf_> Also xplatform
hkBst__ has joined #ocaml
<adrien_oww> ocamlnet
<adrien_oww> ocaml-http
<adrien_oww> lwt
<adrien_oww> probably libs from mirage
<adrien_oww> and a couple others
<asmanur_> even with unix its much simpler
<asmanur_> you can use establish_server
<wuttf_> adrien_oww: Ty.
ontologiae has quit [Read error: Connection reset by peer]
myx has joined #ocaml
<adrien_oww> tbh the code on that page does a lot of things
ontologiae has joined #ocaml
<orbitz> Ohm too
cdidd has joined #ocaml
ttamttam has quit [Quit: ttamttam]
lolcathost has quit [Quit: When I come back, please tell me in what new ways you have decided to be completely wrong.]
ttamttam has joined #ocaml
Demitar has quit [Ping timeout: 255 seconds]
lasagna has quit []
Snark has joined #ocaml
RagingDave has quit [Quit: Ex-Chat]
_andre has joined #ocaml
hkBst__ has quit [Ping timeout: 255 seconds]
hkBst has joined #ocaml
hkBst has quit [Excess Flood]
hkBst has joined #ocaml
RagingDave has joined #ocaml
milosn has joined #ocaml
jbrown has joined #ocaml
RagingDave has quit [Read error: Connection reset by peer]
jbrown has quit [Ping timeout: 246 seconds]
RagingDave has joined #ocaml
Demitar has joined #ocaml
ttamttam has quit [Quit: ttamttam]
RagingDave has quit [Read error: Connection reset by peer]
jbrown has joined #ocaml
mye has quit [Ping timeout: 260 seconds]
mye has joined #ocaml
mika1 has quit [Quit: Leaving.]
hkBst has quit [Ping timeout: 252 seconds]
hkBst has joined #ocaml
hkBst has quit [Changing host]
hkBst has joined #ocaml
lolcathost has joined #ocaml
sgnb has quit [Read error: Connection reset by peer]
tac has quit [Ping timeout: 245 seconds]
sgnb has joined #ocaml
hkBst has quit [Ping timeout: 272 seconds]
ttamttam has joined #ocaml
hkBst has joined #ocaml
hkBst has quit [Ping timeout: 252 seconds]
hkBst has joined #ocaml
hkBst has quit [Changing host]
hkBst has joined #ocaml
hkBst has quit [Read error: Connection reset by peer]
pippijn has quit [Remote host closed the connection]
hkBst_ has joined #ocaml
hkBst_ has quit [Changing host]
hkBst_ has joined #ocaml
lolcathost has quit [Ping timeout: 255 seconds]
mye has quit [Quit: mye]
leoncamel has joined #ocaml
Submarine has joined #ocaml
mye has joined #ocaml
mika1 has joined #ocaml
fab_ has joined #ocaml
philed has quit [Read error: Operation timed out]
<fab_> hi, i have a problem compiling an ocaml file
<fab_> i enter 'ocamlc -c -I +camlp4 -pp camlp4of.opt main.ml' o the shell
<fab_> sh: camlp4of.opt: not found
sgnb has quit [Read error: Connection reset by peer]
<orbitz> camlp4of.opt in your path?
sgnb has joined #ocaml
<fab_> i don't know if is the right way to compile in ocaml
<fab_> no
<orbitz> there yougo
<orbitz> do you have camlp4of in your path?
<orbitz> (and are you using anything from camlp4of?
<fab_> no just the files
<orbitz> WHat?
<fab_> in the path there are only ml file
<fab_> files*
<orbitz> $PATH not path
<fab_> ok i have to add the camlp4of.opt in the $PATH?
ontologiae has quit [Ping timeout: 265 seconds]
<orbitz> -pp just runs a program and pipes your .ml into it and compiles the stdout
<orbitz> So do you have camlp4of.opt installed? is it in your $PATH? Do you have camlp4of installed? is it in your $PATH?
lolcathost has joined #ocaml
<fab_> i installed Camlp4
<orbitz> Not what I asked :)
<fab_> where i can find camlp4of.opt
<fab_> ?
<orbitz> where is ocamlc?
<fab_> i don't know, i have install ocaml, emacs and camlp4
leoncamel has quit [Ping timeout: 252 seconds]
<fab_> with tuareg mode
<orbitz> which ocamlc
mika1 has quit [Quit: Leaving.]
zip has quit [Read error: Connection reset by peer]
<fab_> what is ocamlc?
zip has joined #ocaml
<orbitz> 07:25 < fab_> i enter 'ocamlc -c -I +camlp4 -pp camlp4of.opt main.ml' o the shell
<fab_> yes, couse there is a comment in the main file
fab__ has joined #ocaml
<fab__> connection problem sorry
fab_ has quit [Ping timeout: 245 seconds]
<fab__> i didn't read what you have wrtie
leoncamel has joined #ocaml
mika1 has joined #ocaml
ontologiae has joined #ocaml
lenstr is now known as lenstr-off
<fab__> the file caml4of.opt was in the package camlp4-extra
fab__ has left #ocaml []
mika1 has quit [Quit: Leaving.]
mika1 has joined #ocaml
mye has quit [Quit: mye]
wuttf_ has quit [Ping timeout: 245 seconds]
gnuvince_ has quit [Ping timeout: 272 seconds]
gnuvince_ has joined #ocaml
gnuvince_ has quit [Read error: Connection reset by peer]
lenstr-off is now known as lenstr
hkBst_ has quit [Ping timeout: 276 seconds]
milosn has quit [Read error: Connection reset by peer]
gnuvince_ has joined #ocaml
milosn has joined #ocaml
sgnb has quit [Ping timeout: 246 seconds]
sgnb has joined #ocaml
hkBst_ has joined #ocaml
pkrnj has joined #ocaml
myx has quit [Read error: Operation timed out]
myx has joined #ocaml
jbrown has quit [Ping timeout: 272 seconds]
hkBst_ has quit [Read error: Connection reset by peer]
hkBst_ has joined #ocaml
jbrown has joined #ocaml
RagingDave has joined #ocaml
liuw has quit [Remote host closed the connection]
hkBst_ has quit [Read error: Connection reset by peer]
so has quit [Ping timeout: 240 seconds]
hkBst__ has joined #ocaml
hkBst__ has quit [Remote host closed the connection]
hongboz has joined #ocaml
hkBst__ has joined #ocaml
tane has joined #ocaml
q66 has joined #ocaml
tane has quit [Client Quit]
dabd has joined #ocaml
mattrepl has joined #ocaml
mye has joined #ocaml
ontologi1e has joined #ocaml
ontologiae has quit [Read error: Connection reset by peer]
xlr has quit [Ping timeout: 240 seconds]
Cyanure has quit [Remote host closed the connection]
gnuvince_ has quit [Ping timeout: 272 seconds]
cago has left #ocaml []
Submarine has quit [Remote host closed the connection]
mika1 has quit [Quit: Leaving.]
hkBst__ has quit [Ping timeout: 276 seconds]
hkBst__ has joined #ocaml
Tobu has joined #ocaml
gnuvince_ has joined #ocaml
tac has joined #ocaml
RagingDave has quit [Quit: Ex-Chat]
ttamttam has quit [Quit: ttamttam]
djcoin has quit [Quit: WeeChat 0.3.9.2]
milosn has quit [Remote host closed the connection]
thomasga has quit [Quit: Leaving.]
hkBst__ has quit [Quit: Konversation terminated!]
xlr has joined #ocaml
pkrnj has quit [Ping timeout: 255 seconds]
jbrown has quit [Ping timeout: 265 seconds]
jbrown has joined #ocaml
pkrnj has joined #ocaml
xavierm02 has joined #ocaml
lopexx has joined #ocaml
Demitar has quit [Ping timeout: 272 seconds]
tane has joined #ocaml
mbac has joined #ocaml
milosn has joined #ocaml
jamii has joined #ocaml
hongboz has quit [Ping timeout: 256 seconds]
thomasga has joined #ocaml
Demitar has joined #ocaml
cdidd has quit [Remote host closed the connection]
osa1 has joined #ocaml
<osa1> do we have a better ocaml toplevel than default one ? one that supports C-r style search, and command history ?
<PM> osa1: use rlwrap :-)
<PM> install it, then “rlwrap ocaml”
<osa1> PM: whoa that's awesome :-) many thanks
<PM> you’re welcome ;) it should work with any other program
mye has quit [Quit: mye]
dabd has quit [Quit: Ex-Chat]
Submarine has joined #ocaml
<flux> osa1, some probably run ocaml from emacs as well (I only do it when testing code fragments, easy to send current function to it)
hongboz has joined #ocaml
ousado has joined #ocaml
ousado has quit [Changing host]
ousado has joined #ocaml
mye__ has joined #ocaml
<osa1> flux: I use vim
mye___ has joined #ocaml
vivanov has joined #ocaml
tac-tics has joined #ocaml
tac has quit [Ping timeout: 245 seconds]
mye has joined #ocaml
mye__ has quit [Ping timeout: 260 seconds]
mye___ has quit [Ping timeout: 260 seconds]
mye___ has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
mye has joined #ocaml
mye_ has joined #ocaml
mye__ has joined #ocaml
mye___ has quit [Ping timeout: 248 seconds]
mye has quit [Ping timeout: 256 seconds]
Reventlov has joined #ocaml
vivanov has quit [Quit: leaving]
mye_ has quit [Ping timeout: 260 seconds]
mye__ has quit [Ping timeout: 260 seconds]
mye has joined #ocaml
_andre has quit [Quit: leaving]
Enjolras has joined #ocaml
<Enjolras> hi
<Enjolras> I have an object which contains mutable fields to this object type
<Enjolras> and i whould like to write methods to set these mutable fields
mye_ has joined #ocaml
<Enjolras> But this i want to write derived class which inhertit from this base class
<Enjolras> and… boom and don't know how to type that
mye__ has joined #ocaml
<Enjolras> since the methods should have the type myobject -> unit, and not baseobject -> unit
mye has quit [Ping timeout: 240 seconds]
mye has joined #ocaml
mye_ has quit [Ping timeout: 248 seconds]
<ousado> there isnät a tiling wm written in ocaml bz anz chance?
<ousado> urgh
<ousado> *isn't, by, any
mye__ has quit [Ping timeout: 240 seconds]
<adrien> tiling, I don't think so
<ousado> hrm
Playground has joined #ocaml
<Qrntz> there was GwML but I think it's not around anymore
<ousado> I'm considering to switch from awesome to xmonad
lolcathost has quit [Read error: Connection reset by peer]
<Qrntz> ah, apparently the sources are still available at https://github.com/korya/efuns/tree/master/gwml
<ousado> and thought maybe there's something in ocaml
<Qrntz> I don't know if it's tiling though
mye has quit [Ping timeout: 248 seconds]
<flux> sawfish is nice if you want a programmable window manager (it uses rep, which is a lisp variant)
<flux> as a bonus you can define function runtime, no need to restart
lopexx has quit []
ontologi1e has quit [Ping timeout: 252 seconds]
<ousado> also interesting
<ousado> yes, programmable is my main priority
mye has joined #ocaml
mye__ has joined #ocaml
mye___ has joined #ocaml
chambart has quit [Read error: Operation timed out]
mye has quit [Ping timeout: 248 seconds]
thomasga has quit [Read error: Connection reset by peer]
mye has joined #ocaml
thomasga1 has joined #ocaml
smondet has joined #ocaml
mye__ has quit [Ping timeout: 248 seconds]
mye_ has joined #ocaml
mye___ has quit [Ping timeout: 276 seconds]
mye has quit [Ping timeout: 248 seconds]
mye__ has joined #ocaml
mye has joined #ocaml
mye_ has quit [Ping timeout: 260 seconds]
mye__ has quit [Ping timeout: 260 seconds]
mye has quit [Ping timeout: 260 seconds]
watermind has joined #ocaml
jbrown has quit [Ping timeout: 276 seconds]
tac-tics is now known as tac
jbrown has joined #ocaml
jbrown has quit [Ping timeout: 248 seconds]
jbrown has joined #ocaml
mye has joined #ocaml
mye has quit [Ping timeout: 276 seconds]
mye has joined #ocaml
jbrown has quit [Ping timeout: 260 seconds]
jbrown has joined #ocaml
mye_ has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
mye_ has quit [Ping timeout: 255 seconds]
gnuvince_ has quit [Ping timeout: 248 seconds]
mye has joined #ocaml
mye_ has joined #ocaml
mye___ has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
mye has joined #ocaml
mye_ has quit [Ping timeout: 260 seconds]
mye___ has quit [Ping timeout: 248 seconds]
gnuvince_ has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
mye has joined #ocaml
mye_ has joined #ocaml
mye__ has joined #ocaml
fraggle_ has quit [Read error: Operation timed out]
watermind has quit [Quit: Konversation terminated!]
mye has quit [Ping timeout: 248 seconds]
BiDOrD_ has quit [Remote host closed the connection]
mye_ has quit [Ping timeout: 248 seconds]
mye has joined #ocaml
mye_ has joined #ocaml
mye__ has quit [Ping timeout: 260 seconds]
mye has quit [Ping timeout: 248 seconds]
mye_ has quit [Ping timeout: 240 seconds]
mye has joined #ocaml
mye_ has joined #ocaml
mye___ has joined #ocaml
mye has quit [Ping timeout: 260 seconds]
philed has joined #ocaml
mye_ has quit [Ping timeout: 240 seconds]
mye has joined #ocaml
ontologiae has joined #ocaml
mye__ has joined #ocaml
mye___ has quit [Ping timeout: 248 seconds]
mye has quit [Ping timeout: 248 seconds]
chambart has joined #ocaml
mye__ has quit [Ping timeout: 248 seconds]
mye has joined #ocaml
weie has quit [Quit: Leaving...]
mye_ has joined #ocaml
fraggle_ has joined #ocaml
gour has quit [Quit: WeeChat 0.3.8]
Snark has quit [Quit: Quitte]
mye__ has joined #ocaml
mye has quit [Ping timeout: 240 seconds]
mye has joined #ocaml
mye_ has quit [Ping timeout: 248 seconds]
fayden has quit [Ping timeout: 248 seconds]
mye__ has quit [Ping timeout: 248 seconds]
RagingDave has joined #ocaml
mye has quit [Ping timeout: 265 seconds]
mye has joined #ocaml
mye_ has joined #ocaml
mye__ has joined #ocaml
ousado has quit [Remote host closed the connection]
ousado has joined #ocaml
ousado has quit [Changing host]
ousado has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
mye_ has quit [Ping timeout: 260 seconds]
ftrvxmtrx has quit [Quit: Leaving]
fayden has joined #ocaml
osa1 has quit [Ping timeout: 276 seconds]
mye__ has quit [Ping timeout: 264 seconds]
ousado has quit [Quit: bye]
emmanuelux has joined #ocaml
mye has joined #ocaml
mye_ has joined #ocaml
mye__ has joined #ocaml
mye has quit [Read error: Operation timed out]
mye has joined #ocaml
pippijn has joined #ocaml
mye_ has quit [Ping timeout: 248 seconds]
mye__ has quit [Ping timeout: 248 seconds]
hto has quit [Quit: Lost terminal]
mye has quit [Ping timeout: 248 seconds]
tac has quit [Quit: Page closed]
mye has joined #ocaml
mye_ has joined #ocaml
hto has joined #ocaml
Playground has quit [Quit: When I come back, please tell me in what new ways you have decided to be completely wrong.]
mye__ has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
mye_ has quit [Ping timeout: 260 seconds]
gbluma has joined #ocaml
mye__ has quit [Ping timeout: 248 seconds]
xavierm02 has quit [Quit: Leaving]
mye has joined #ocaml
mye_ has joined #ocaml
mye has quit [Ping timeout: 260 seconds]
gbluma has left #ocaml []
mye_ has quit [Ping timeout: 260 seconds]
hongboz has quit [Ping timeout: 260 seconds]
mye has joined #ocaml
mye_ has joined #ocaml
mye___ has joined #ocaml
mye has quit [Ping timeout: 265 seconds]
mye has joined #ocaml
mye_ has quit [Ping timeout: 260 seconds]
cdidd has joined #ocaml
mye_ has joined #ocaml
mye___ has quit [Ping timeout: 256 seconds]
mye___ has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
cdidd has quit [Remote host closed the connection]
mye has joined #ocaml
mye_ has quit [Ping timeout: 248 seconds]
mye_ has joined #ocaml
mye__ has joined #ocaml
mye___ has quit [Ping timeout: 248 seconds]
mye has quit [Ping timeout: 260 seconds]
mye_ has quit [Ping timeout: 276 seconds]
mye__ has quit [Ping timeout: 252 seconds]
Yoric has quit [Read error: Operation timed out]
tac has joined #ocaml
mye__ has joined #ocaml
<adrien> wmeeeeyyyyyyeeeeeeerrrrrr ='(
mye___ has joined #ocaml
<adrien> mye___: you need to fix your connection
mye__ has quit [Ping timeout: 240 seconds]
alang_ has quit [Ping timeout: 240 seconds]
alang_ has joined #ocaml
mye___ has quit [Ping timeout: 264 seconds]
mye has joined #ocaml
mye_ has joined #ocaml
alang_ has quit [Ping timeout: 240 seconds]
leoncamel has quit [Ping timeout: 252 seconds]
pkrnj has quit [Quit: Computer has gone to sleep.]
mye has quit [Ping timeout: 276 seconds]
mye_ has quit [Ping timeout: 260 seconds]
pkrnj has joined #ocaml
mye has joined #ocaml
thomasga1 has quit [Quit: Leaving.]
mye__ has joined #ocaml
mye___ has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
mye__ has quit [Ping timeout: 260 seconds]
mye___ has quit [Ping timeout: 248 seconds]
mye has joined #ocaml
mye_ has joined #ocaml
iratsu has joined #ocaml
tani has joined #ocaml
mye__ has joined #ocaml
mye___ has joined #ocaml
mye has quit [Ping timeout: 240 seconds]
smondet has quit [Read error: Operation timed out]
mye has joined #ocaml
mye_ has quit [Ping timeout: 252 seconds]
mye_ has joined #ocaml
tane has quit [Ping timeout: 264 seconds]
mattrepl has quit [Quit: mattrepl]
mye__ has quit [Ping timeout: 256 seconds]
mye___ has quit [Ping timeout: 256 seconds]
q66 has quit [Quit: Quit]
mye has quit [Ping timeout: 240 seconds]
iratsu has quit [Ping timeout: 248 seconds]
mye_ has quit [Ping timeout: 240 seconds]
tani has quit [Quit: Verlassend]
q66 has joined #ocaml
iratsu has joined #ocaml
mye has joined #ocaml
mye__ has joined #ocaml
mye___ has joined #ocaml
mye has quit [Ping timeout: 248 seconds]
mye__ has quit [Ping timeout: 260 seconds]
mye___ has quit [Ping timeout: 260 seconds]
RagingDave has quit [Quit: Ex-Chat]
ontologiae has quit [Ping timeout: 252 seconds]
tac has quit [Ping timeout: 245 seconds]
lolcathost has joined #ocaml
wks has joined #ocaml
lolcathost has quit [Ping timeout: 246 seconds]
milosn has quit [Ping timeout: 256 seconds]
pkrnj has quit [Quit: Computer has gone to sleep.]
lolcathost has joined #ocaml
emmanuelux has quit [Read error: Connection reset by peer]
emmanuelux has joined #ocaml
milosn has joined #ocaml
chambart has quit [Ping timeout: 246 seconds]
nickmeharry has quit [Quit: Leaving.]
nickmeharry has joined #ocaml
milosn_ has joined #ocaml
milosn has quit [Ping timeout: 265 seconds]