|marius| has quit [Remote host closed the connection]
|marius| has joined #ocaml
mfp has joined #ocaml
travisbrady has quit [Quit: travisbrady]
liftM has joined #ocaml
|marius| has quit [Remote host closed the connection]
<krankkatze>
how may I exit the programm?
joewilliams_away is now known as joewilliams
<liftM>
krankkatze: use the exit function. For instance: exit 0;;
<krankkatze>
thanks
aja has joined #ocaml
joewilliams is now known as joewilliams_away
seafood has quit [Quit: seafood]
liftM has quit [Ping timeout: 252 seconds]
<Associat0r>
what is the most elegant OCaml GUI lib out there?
msteele_ has quit [Ping timeout: 265 seconds]
philtor has quit [Read error: Operation timed out]
msteele has joined #ocaml
seafood has joined #ocaml
seafood has quit [Client Quit]
|marius| has joined #ocaml
seafood has joined #ocaml
seafood has quit [Quit: seafood]
seafood has joined #ocaml
seafood has quit [Client Quit]
seafood has joined #ocaml
seafood has quit [Client Quit]
seafood has joined #ocaml
aja has quit [Read error: Connection reset by peer]
Modius has joined #ocaml
msteele has quit [Quit: Changing server]
seafood has quit [Quit: seafood]
jakedouglas has quit [Quit: Leaving.]
ygrek_ has joined #ocaml
Amorphous has quit [Ping timeout: 276 seconds]
Modius has quit [Ping timeout: 276 seconds]
Amorphous has joined #ocaml
Associat0r has quit [Quit: Associat0r]
ygrek_ has quit [Remote host closed the connection]
|marius| has quit [Remote host closed the connection]
ygrek_ has joined #ocaml
xmarteo has joined #ocaml
ikaros has joined #ocaml
sepp2k has joined #ocaml
ulfdoz has joined #ocaml
verte has joined #ocaml
seafood has joined #ocaml
Vassia has joined #ocaml
Vassia has left #ocaml []
ttamttam has joined #ocaml
ftrvxmtrx has quit [Quit: Leaving]
ftrvxmtrx has joined #ocaml
Anarchos has joined #ocaml
seafood has quit [Read error: Connection reset by peer]
seafood_ has joined #ocaml
seafood_ has quit [Client Quit]
Anarchos has quit [Ping timeout: 240 seconds]
Yoric has joined #ocaml
Vassia has joined #ocaml
Vassia has quit [Ping timeout: 240 seconds]
ikaros has quit [Quit: Leave the magic to Houdini]
ttamttam has quit [Quit: Leaving.]
Vassia has joined #ocaml
Vassia has quit [Ping timeout: 258 seconds]
Anarchos has joined #ocaml
Yoric has quit [Quit: Yoric]
ulfdoz_ has joined #ocaml
Anarchos has quit [Read error: Connection reset by peer]
Anarchos has joined #ocaml
ulfdoz has quit [Ping timeout: 260 seconds]
yziquel has joined #ocaml
Tianon has quit [Read error: Operation timed out]
Tianon has joined #ocaml
Tianon has quit [Changing host]
Tianon has joined #ocaml
dark has quit [Ping timeout: 265 seconds]
ulfdoz_ has quit [Quit: Reconnecting]
ulfdoz has joined #ocaml
dark has joined #ocaml
Vassia has joined #ocaml
Vassia has quit [Ping timeout: 260 seconds]
Associat0r has joined #ocaml
verte has quit [Quit: ~~~ Crash in JIT!]
jakedouglas has joined #ocaml
jakedouglas has quit [Quit: Leaving.]
yziquel has quit [Ping timeout: 252 seconds]
Vassia has joined #ocaml
Vassia has quit [Ping timeout: 260 seconds]
chee has quit [Read error: Connection reset by peer]
chee has joined #ocaml
jakedouglas has joined #ocaml
jakedouglas has quit [Quit: Leaving.]
Asmadeus has quit [Ping timeout: 260 seconds]
npouillard has quit [Ping timeout: 252 seconds]
mehdid has quit [Quit: Reconnecting]
gildor has quit [Ping timeout: 265 seconds]
chee has quit [Ping timeout: 265 seconds]
mihamina has joined #ocaml
liftM has joined #ocaml
<mihamina>
HI all
<liftM>
Hi!
npouillard has joined #ocaml
<mihamina>
I want to build a recursive function that convert ["a", "b", "c",..."x"] to (x,(...(c,(b,a)))), and I tried: http://pastebin.org/415588 but get type error
|marius| has joined #ocaml
<mihamina>
how to ?
Asmadeus has joined #ocaml
<sepp2k>
mihamina: Such a function would have a different return type depending on the length of the input list, so it's not possible.
chee has joined #ocaml
gildor has joined #ocaml
<coucou747>
sepp2k, Obj.magic :D
mehdid has joined #ocaml
patronus has quit [Ping timeout: 240 seconds]
mehdid has quit [Client Quit]
mehdid has joined #ocaml
<coucou747>
type 'a t = 'a * 'a t
<coucou747>
let rec totuple ( li : 'a list ) : 'a t = match li with
<Associat0r>
guys what is the most elegant GUI lib for OCaml?
<Associat0r>
from a code standpoint
npouillard has quit [Ping timeout: 252 seconds]
thieusoai has joined #ocaml
npouillard has joined #ocaml
|marius| has quit [Remote host closed the connection]
<dark>
Associat0r, i don't know, but i would use lablgtk
<dark>
just because i'm familiar with pygtk and C gtk interface
<Associat0r>
I'm looking for the most OCaml like approach
<dark>
It uses the rich type system of Objective Caml 3 to provide a strongly typed, yet very comfortable, object-oriented interface to gtk+. This is not that easy if you know the dynamic typing approach taken by gtk+.