r0bby has joined #ocaml
m3ga has joined #ocaml
Morphous has joined #ocaml
m3ga has quit [Client Quit]
hkBst has quit ["Konversation terminated!"]
Morphous_ has quit [Read error: 110 (Connection timed out)]
johnnowak has quit []
Associat0r has quit []
Ched- has quit [Read error: 110 (Connection timed out)]
Ched- has joined #ocaml
marmotine has joined #ocaml
m3ga has joined #ocaml
seafood has quit []
pango has quit [Remote closed the connection]
pango has joined #ocaml
m3ga has quit [Read error: 110 (Connection timed out)]
m3ga has joined #ocaml
marmotine has quit ["Quitte"]
m3ga_ has joined #ocaml
m3ga has quit [Read error: 110 (Connection timed out)]
m3ga_ has quit ["disappearing into the sunset"]
Kopophex has joined #ocaml
seafood has joined #ocaml
coucou747 has joined #ocaml
arquebus has joined #ocaml
arquebus has quit [Read error: 110 (Connection timed out)]
batcoder-7 has quit ["Leaving."]
Kopophex has quit ["Leaving"]
filp has joined #ocaml
Linktim has joined #ocaml
seafood has quit []
bluestorm has joined #ocaml
Linktim_ has joined #ocaml
Linktim has quit [Read error: 110 (Connection timed out)]
Linktim- has joined #ocaml
coucou747 has quit ["bye ca veut dire tchao en anglais"]
coucou747 has joined #ocaml
m3ga has joined #ocaml
Linktim_ has quit [Read error: 110 (Connection timed out)]
Linktim_ has joined #ocaml
Linktim- has quit [Read error: 110 (Connection timed out)]
Snark has joined #ocaml
Yoric[DT] has joined #ocaml
<
flux>
what does it require on the windows side?
<
flux>
or other tools on the linux side..
<
flux>
apparently debian lenny has mingw32
Tetsuo has joined #ocaml
<
flux>
uuh, ooh, my helloworld works (under wine)
<
flux>
I wonder how big a task it is to compile libsdl etc for that ;)
<
bluestorm>
Yoric[DT]: the link to the catch_0.2 software was unavailable
filp has quit ["Bye"]
<
Yoric[DT]>
I fixed this yesterday morning, normally.
<
Yoric[DT]>
Or do you mean in my e-mail?
<
bluestorm>
probably
<
bluestorm>
the url on your web page still points to your "comprehension stuff"
<
Yoric[DT]>
Yeah, I haven't had time to update the rest of the blog.
<
Yoric[DT]>
I'll do that soonish.
<
Yoric[DT]>
Probably Monday.
<
Yoric[DT]>
Anyway, gottago.
<
Yoric[DT]>
Cheers, that is.
Yoric[DT] has quit ["Ex-Chat"]
Mr_Awesome has quit [Remote closed the connection]
guillem has joined #ocaml
hkBst has joined #ocaml
Associat0r has joined #ocaml
m3ga has quit ["disappearing into the sunset"]
Ched- has joined #ocaml
pango has quit [Remote closed the connection]
pango has joined #ocaml
<
tsuyoshi>
flux: yeah it just needs mingw32.. mingw32 says windows needs some dll but it seems to work just fine without the dll
<
tsuyoshi>
I'm working on getting gtk working with it.. next I guess I'll do sdl
<
tsuyoshi>
I think I figured out why gtk is only built as a dll for windows.. it must be because of the lgpl
Linktim_ has quit [Read error: 110 (Connection timed out)]
Linktim_ has joined #ocaml
marmotine has joined #ocaml
Ched- has joined #ocaml
Linktim has joined #ocaml
Linktim has quit [Read error: 104 (Connection reset by peer)]
marmotine has quit ["Quitte"]
seafood has joined #ocaml
Linktim has joined #ocaml
kotarak has joined #ocaml
pango has quit [Remote closed the connection]
tomh has joined #ocaml
pango has joined #ocaml
Linktim_ has quit [Remote closed the connection]
Linktim has quit ["Quitte"]
johnnowak has joined #ocaml
seafood_ has joined #ocaml
seafood__ has joined #ocaml
seafood___ has joined #ocaml
seafood has quit [Read error: 110 (Connection timed out)]
RobertFischer has joined #ocaml
RobertFischer has quit [Client Quit]
seafood_ has quit [Read error: 110 (Connection timed out)]
seafood__ has quit [Read error: 110 (Connection timed out)]
Linktim has joined #ocaml
kotarak has quit []
seafood___ has quit []
marmotine has joined #ocaml
Linktim_ has joined #ocaml
marmotine has quit [Read error: 110 (Connection timed out)]
Linktim has quit [Read error: 110 (Connection timed out)]
marmotine has joined #ocaml
munga has joined #ocaml
Linktim_ has quit [Read error: 110 (Connection timed out)]
munga has quit [Connection reset by peer]
Kopophex has joined #ocaml
Axioplase has joined #ocaml
Linktim has joined #ocaml
Linktim has quit ["Quitte"]
RobertFischer has joined #ocaml
kotarak has joined #ocaml
kotarak has quit [Client Quit]
johnnowak has quit []
coucou747 has quit ["bye ca veut dire tchao en anglais"]
coucou747 has joined #ocaml
Sapan has joined #ocaml
kotarak has joined #ocaml
Axioplas1 has joined #ocaml
Axioplas1 has quit [Client Quit]
Snark has quit ["Ex-Chat"]
Mr_Awesome has joined #ocaml
tomh has joined #ocaml
Sapan has left #ocaml []
coucou747 has quit ["bye ca veut dire tchao en anglais"]
Tetsuo has quit ["Leaving"]
Sapan has joined #ocaml
<
Sapan>
is there a way to cause a stream to autoflush, so that one doesn't have to explicitly call flush on it?
ChristopheT has joined #ocaml
<
Sapan>
bla, yes. I don't know how to wrap printf, though.
LordMetroid has joined #ocaml
<
pango>
what about let printf_flush fmt = printf (fmt ^^ "%!")
<
Sapan>
pango: ok, let me figure out what the ^^ operator does
<
pango>
format concatenation
<
Sapan>
how is a format defined in ocaml? as what language construct, i mean?
<
bluestorm>
(^^);; showing the type is sooo helpful :p
<
Sapan>
i'm thinking that if I wanted to define a new format specifier, then how would I go about defining it.
<
Sapan>
btw, concatenating %! was a pretty good idea. thank you.
* bla
became distracted
<
pango>
another way to achieve the same thing could be let printf_flush = Printf.kfprintf flush stdout, I guess
<
pango>
sorry, let printf_flush fmt = Printf.kfprintf flush stdout fmt (to preserve polymorphism)
bluestorm has quit ["Konversation terminated!"]
tomh has joined #ocaml
guillem has quit [Remote closed the connection]
LordMetroid has quit ["Leaving"]
patrick2 has joined #ocaml
ChristopheT has quit ["ERC Version 5.2 (IRC client for Emacs)"]