<roconnor>
det: ya. I was hoping it was common enough that there was a library function for it.
Edward__ has quit []
ulfdoz_ has joined #ocaml
ulfdoz has quit [Read error: Operation timed out]
aj2009 has joined #ocaml
aj2009 has quit [Quit: Leaving]
aj2009 has joined #ocaml
ulfdoz_ has quit [Quit: Reconnecting]
ulfdoz has joined #ocaml
jakedouglas has quit [Quit: Leaving.]
aj2009 has quit [Remote host closed the connection]
Yoric has joined #ocaml
aj2009 has joined #ocaml
wormphlegm has quit [Quit: hmm]
ska1 has joined #ocaml
ska1 has left #ocaml []
ttamttam has joined #ocaml
Amorphous has quit [Ping timeout: 276 seconds]
Yoric has quit [Quit: Yoric]
ftrvxmtrx has quit [Quit: Leaving]
Amorphous has joined #ocaml
pikachuyann has joined #ocaml
<flux>
piqi seems quite interesting
Leonidas has quit [Ping timeout: 240 seconds]
Leonidas has joined #ocaml
Leonidas is now known as Guest60304
<adrien>
can't remember, what is it?
<flux>
piqi.org
<flux>
it's a structured data representation format/tool/library thaat works with ocaml and has the wire format of google protocol buffers
<adrien>
ah, right :-)
<adrien>
saw it from the cufp mailing-list message? ;-)
shachaf has quit [Read error: Connection reset by peer]
shachaf has joined #ocaml
<flux>
if by that you mean caml-list, then yes :)
<adrien>
yup
<adrien>
too early in the morning :P
Guest60304 has quit [Ping timeout: 240 seconds]
Leonidas_ has joined #ocaml
Leonidas_ is now known as Guest96662
wowi_ has joined #ocaml
<wowi_>
plop
seafood has quit [Quit: seafood]
ikaros has joined #ocaml
ftrvxmtrx has joined #ocaml
ikaros has quit [Client Quit]
oc13 has joined #ocaml
ftrvxmtrx has quit [Quit: Leaving]
ftrvxmtrx has joined #ocaml
ftrvxmtrx has quit [Remote host closed the connection]
ftrvxmtrx has joined #ocaml
aj2009 has quit [Read error: Connection reset by peer]
ikaros has joined #ocaml
slunk has quit [Ping timeout: 264 seconds]
ikaros has quit [Client Quit]
ikaros has joined #ocaml
ftrvxmtrx has quit [Ping timeout: 260 seconds]
ftrvxmtrx has joined #ocaml
<f[x]>
can anyone devise a delimcc analogue for the following (mz)scheme code : (reset (+ 1 (shift k (list (k 10) (k 20) (k 30))))) ?
<f[x]>
I cannot get the straight translation to work, the types get in the way, probably delimcc's shift is not scheme's shift..
verte has joined #ocaml
ikaros has quit [Quit: Leave the magic to Houdini]
Guest96662 has left #ocaml []
Leonidas has joined #ocaml
Yoric has joined #ocaml
slunk has joined #ocaml
avsm has joined #ocaml
Tianon has quit [Read error: Operation timed out]
Tianon has joined #ocaml
Tianon has quit [Changing host]
Tianon has joined #ocaml
Associat0r has joined #ocaml
ikaros has joined #ocaml
ikaros has quit [Quit: Leave the magic to Houdini]
sgnb has quit [Remote host closed the connection]
glondu has joined #ocaml
glondu has quit [Remote host closed the connection]
sgnb has joined #ocaml
ikaros has joined #ocaml
Yoric has quit [Quit: Yoric]
avsm has quit [Quit: Leaving.]
_unK has joined #ocaml
avsm has joined #ocaml
tomasz has left #ocaml []
npouillard has quit [Ping timeout: 272 seconds]
Yoric has joined #ocaml
Associat0r has quit [Read error: Connection reset by peer]
ikaros has quit [Remote host closed the connection]
ikaros has joined #ocaml
verte has quit [Quit: ~~~ Crash in JIT!]
barismetin has joined #ocaml
barismetin has quit [Remote host closed the connection]
npouillard has joined #ocaml
mjonsson has quit [Ping timeout: 276 seconds]
seafood has joined #ocaml
z77z has joined #ocaml
joewilliams_away is now known as joewilliams
jakedouglas has joined #ocaml
Modius has joined #ocaml
seafood has quit [Ping timeout: 240 seconds]
ttamttam has quit [Remote host closed the connection]
wowi_ has quit [Remote host closed the connection]
ccasin has joined #ocaml
tmaedaZ has joined #ocaml
tmaedaZ is now known as tmaeda
tmaeda is now known as tmaedaZ
tmaedaZ is now known as tmaeda
tmaeda is now known as tmaedaZ
jsk-away has left #ocaml []
tmaedaZ is now known as tmaeda
z77z has quit [Remote host closed the connection]
Yoric has quit [Quit: Yoric]
|marius| has joined #ocaml
|marius| has quit [Remote host closed the connection]
|marius| has joined #ocaml
ftrvxmtrx has quit [Quit: Leaving]
tmaeda is now known as tmaedaZ
ygrek has joined #ocaml
Yoric has joined #ocaml
<adrien>
hi, I'd like to write a function like 'fun f arg1 arg2 arg3 ... -> f (arg1, arg2, arg3, ...)' but I don't know how to handle having a variable number of argument, any ideas?
<adrien>
(I can work around the problem by making explicit f1, f2, f3, ... functions but it doesn't look very good)
<adrien>
mfp: thanks, now to decide whether I should go for CPS or explicitely pass f1/f2/f3/... functions...
<adrien>
this if for lablgtk2+react, more precisely, for signals, so it might be called quite often
Leonidas has joined #ocaml
<roconnor>
has anyone here build ocaml-expat? I'm trying to run the unit tests before install but I get the error "Fatal error: cannot load shared library dllmlexpat // Reason: dllmlexpat.so: cannot open shared object file: No such file or directory", but the dllmlexpat.so file is right here in this directory where it was just built.
<mfp>
roconnor: does it work with LD_LIBRARY_PATH=. ?
<roconnor>
now I wonder if I should patch the files somehow or just not run the tests at all
<roconnor>
adrien: is there some better way of running the tests than doing LD_LIBRARY_PATH=. ./unittest ?
<roconnor>
can I build unittest so it looks in .?
<roconnor>
I thought that was what the -L. parameter was for
<adrien>
linking with "-ccopt -rpath something" (not sure of the name) should do it but I'm not sure it's worth it, what's the problem with LD_LIBRARY_PATH, it's one-time and gets the job done