kelaouchi has quit [Read error: 110 (Connection timed out)]
rfischer has quit [Read error: 110 (Connection timed out)]
pants1 has joined #ocaml
buluca has quit [Read error: 113 (No route to host)]
buluca has joined #ocaml
seafoodX has quit []
CRathman has quit ["ChatZilla 0.9.78.1 [Firefox 2.0.0.8/2007100816]"]
alk has joined #ocaml
mordaunt has quit [Nick collision from services.]
alk has quit [Read error: 104 (Connection reset by peer)]
mordaunt has joined #ocaml
seafoodX has joined #ocaml
buluca has quit [Read error: 113 (No route to host)]
Mr_Awesome has quit ["aunt jemima is the devil!"]
Abo-Marwan14 has quit [Read error: 104 (Connection reset by peer)]
screwt840 has quit [Read error: 104 (Connection reset by peer)]
Mr_Awesome has joined #ocaml
Abo-Marwan14 has joined #ocaml
screwt840 has joined #ocaml
netx has joined #ocaml
piggybox__ has joined #ocaml
pants1 has quit [Connection timed out]
ita has quit [Remote closed the connection]
piggybox_ has quit [Connection timed out]
schme has joined #ocaml
^authentic has joined #ocaml
ygrek has joined #ocaml
authentic has quit [Read error: 111 (Connection refused)]
^authentic is now known as authentic
filp has joined #ocaml
smimou has joined #ocaml
filp has quit [Read error: 104 (Connection reset by peer)]
filp has joined #ocaml
seafoodX has quit [Read error: 110 (Connection timed out)]
lde has quit [Remote closed the connection]
lde has joined #ocaml
seafoodX has joined #ocaml
buluca has joined #ocaml
smimou has quit ["bli"]
leo037 has joined #ocaml
p_a_u_l has left #ocaml []
p_a_u_l has joined #ocaml
schme has quit [Remote closed the connection]
schme has joined #ocaml
ramki has quit [Remote closed the connection]
ramki has joined #ocaml
seafoodX has quit []
lde` has joined #ocaml
lde has quit [Connection timed out]
buluca has quit [Read error: 113 (No route to host)]
buluca has joined #ocaml
ygrek has quit [Remote closed the connection]
ygrek has joined #ocaml
love-pingoo has joined #ocaml
buluca has quit [Read error: 113 (No route to host)]
buluca has joined #ocaml
piggybox__ has quit [Read error: 110 (Connection timed out)]
kfor has joined #ocaml
kfor has left #ocaml []
buluca has quit [Read error: 113 (No route to host)]
buluca has joined #ocaml
piggybox__ has joined #ocaml
Ober has joined #ocaml
buluca has quit [Read error: 113 (No route to host)]
buluca has joined #ocaml
mikeX has joined #ocaml
Tetsuo has joined #ocaml
ygrek has quit [Remote closed the connection]
pango has quit [Remote closed the connection]
pango has joined #ocaml
seafoodX has joined #ocaml
seafoodX has quit [Client Quit]
p_a_u_l has quit ["leaving"]
crathman has joined #ocaml
mordaunt has quit [Read error: 104 (Connection reset by peer)]
DT has joined #ocaml
ramki has quit ["Leaving"]
buluca has quit [Read error: 113 (No route to host)]
pango has quit [Remote closed the connection]
pango has joined #ocaml
buluca has joined #ocaml
filp has quit ["Bye"]
bluestorm has joined #ocaml
love-pingoo has quit ["Connection reset by pear"]
Tetsuo has quit [Remote closed the connection]
Tetsuo has joined #ocaml
smimou has joined #ocaml
filp has joined #ocaml
ygrek has joined #ocaml
buluca has quit ["Leaving."]
rogo has quit [Read error: 110 (Connection timed out)]
buluca has joined #ocaml
Torment has joined #ocaml
Jedai has quit [Read error: 110 (Connection timed out)]
buluca has quit [Connection timed out]
buluca has joined #ocaml
Nevor has joined #ocaml
azoic has joined #ocaml
<Nevor>
Haskelll powaaaaaaaaaaa
Nevor has quit ["Leaving"]
Catzillator has joined #ocaml
Tetsuo has quit [Remote closed the connection]
Tetsuo has joined #ocaml
<mbishop>
heh
<mbishop>
Now we even have "fringe" language wars
<flux>
:)
<flux>
or perhaps we can think that it's nice that these languages get also, hmm, younger users?
kelaouchi has joined #ocaml
mattam has quit [Read error: 104 (Connection reset by peer)]
mattam has joined #ocaml
screwt840 has quit [Read error: 104 (Connection reset by peer)]
Abo-Marwan14 has quit [Remote closed the connection]
kelaouch1 has quit [Connection timed out]
Abo-Marwan14 has joined #ocaml
ygrek has quit [Remote closed the connection]
piggybox__ has quit [Read error: 110 (Connection timed out)]
bluestorm has quit [Remote closed the connection]
screwt840 has joined #ocaml
Tetsuo has quit ["Leaving"]
<vorago>
Is it possible to cross-compile ocaml sources?
<vorago>
Like linux amd64 -> w32 x86?
<vorago>
It's possible AFAIK to do this with C/C++
<schme>
vorago: Will not bytecode work for ya?
<vorago>
Well bytecode needs interpreter.
<vorago>
If somebody has an interpreter i would be able to give him source.
<vorago>
He would compile it and run.
DT has quit ["Ex-Chat"]
<pango>
you don't need an interpreter, just a runtime (ocamlrun)
<schme>
Yeah.. just tar the bytecode and ocamlrun together. Everyone is happy.
DT has joined #ocaml
piggybox__ has joined #ocaml
<vorago>
schme, nice idea.
<vorago>
I just need to find .exe with necessary .dlls and tester. ;d
buluca has quit [Read error: 113 (No route to host)]
<vorago>
Thanks pango&schme ;)
<pango>
good luck :)
Catzillator has left #ocaml []
<DT>
Has anyone used ocpp ?
<vorago>
Maybe you have an idea how to draw animation? I've got problem with timing... Unix.sleep sleeps for seconds... and only works with ocaml toplevel (DOESN'T at all in compiled program in loop). Still I would need micro seconds...
* DT
has no clue.
<vorago>
I'm doing simple physical simulation.
* vorago
has no clue what ocpp is.
<DT>
It's Camlp4 reduced to the role of a unversal preprocessor.
<vorago>
Ah.
<vorago>
Thread.delay might do. Checking...
<pango>
or Unix.select
<pango>
let usleep delay = ignore(Unix.select [] [] [] delay)
<vorago>
Hm.
<vorago>
It might work better (i couldn't manage to compile with Thread)