mfurr changed the topic of #ocaml to: OCaml 3.08.2 available! | Archive of Caml Weekly News: http://sardes.inrialpes.fr/~aschmitt/cwn/ | A free book: http://cristal.inria.fr/~remy/cours/appsem/ | Mailing List: http://caml.inria.fr/bin/wilma/caml-list/ | Cookbook: http://pleac.sourceforge.net/
Skal_ has joined #ocaml
kinners has quit [Read error: 104 (Connection reset by peer)]
Skal has quit [Read error: 110 (Connection timed out)]
_JusSx_ has quit ["leaving"]
vodka-goo has quit []
hangman4 has quit ["Lost terminal"]
Skal_ has quit ["Client exiting"]
znutar has quit [Read error: 110 (Connection timed out)]
CosmicRay has joined #ocaml
jewel has joined #ocaml
<humasect> anyone used Cameleon mech?
<humasect> *much
jewel_ has joined #ocaml
jewel_ has quit ["Leaving"]
jewel_ has joined #ocaml
jewel has quit [Nick collision from services.]
jewel_ is now known as jewel
mlh_ has quit [zelazny.freenode.net irc.freenode.net]
mlh_ has joined #ocaml
<tewk> humasect: I wasn't too impressed the last time I looked at it
humasect has quit [Read error: 104 (Connection reset by peer)]
humasect has joined #ocaml
jewel has quit [Read error: 104 (Connection reset by peer)]
jewel has joined #ocaml
<jewel> from what I have read about ocaml I assume that it's not possible to construct a new type at runtime (and create instances of that type)?
<Riastradh> Types do not exist at run-time.
mlh has quit ["brb"]
CosmicRay has quit ["Leaving"]
dan2 has left #ocaml []
joey_ has joined #ocaml
HALtheComputer has joined #ocaml
HALtheComputer has left #ocaml []
Submarine has joined #ocaml
Submarine has quit ["Leaving"]
Snark has joined #ocaml
cognominal has quit [Read error: 54 (Connection reset by peer)]
cognominal has joined #ocaml
zzorn has joined #ocaml
<vincenz> Riastradh: not quite true...
<vincenz> Riastradh: dynamic linking requires some type info
zzorn is now known as zzorn_away
Snark has quit [Read error: 110 (Connection timed out)]
zzorn_away is now known as zzorn
Snark has joined #ocaml
humasect has quit [Read error: 104 (Connection reset by peer)]
humasect has joined #ocaml
Submarine has joined #ocaml
zzorn is now known as zzorn_away
jewel has quit [Read error: 110 (Connection timed out)]
jewel has joined #ocaml
mlh has joined #ocaml
pango has quit [Remote closed the connection]
jewel has quit [Operation timed out]
jewel has joined #ocaml
vezenchio has quit ["I live in a yurt on the steppes of Sheepfuckistan. That's why."]
smimou has joined #ocaml
ejt has joined #ocaml
m3ga has joined #ocaml
smimou has quit [Read error: 110 (Connection timed out)]
m3ga has quit ["disappearing into the sunset"]
kinners has joined #ocaml
humasect has quit [Read error: 104 (Connection reset by peer)]
humasect has joined #ocaml
inka has joined #ocaml
<inka> /query ejt
mrvn_ has joined #ocaml
mrvn has quit [Read error: 60 (Operation timed out)]
kHebSkik has quit [Read error: 110 (Connection timed out)]
kHebSkik has joined #ocaml
jewel has quit [Read error: 60 (Operation timed out)]
humasect_ has joined #ocaml
humasect has quit [Read error: 104 (Connection reset by peer)]
Skal has joined #ocaml
kinners has quit ["leaving"]
_JusSx_ has joined #ocaml
inka has quit [Read error: 60 (Operation timed out)]
vincenz has quit [Read error: 110 (Connection timed out)]
mlh has quit [Client Quit]
Skal has quit ["Client exiting"]
Skal has joined #ocaml
smimou has joined #ocaml
mrchebas has joined #ocaml
CosmicRay has joined #ocaml
smimou changed the topic of #ocaml to: OCaml 3.08.3 available! | Archive of Caml Weekly News: http://sardes.inrialpes.fr/~aschmitt/cwn/ | A free book: http://cristal.inria.fr/~remy/cours/appsem/ | Mailing List: http://caml.inria.fr/bin/wilma/caml-list/ | Cookbook: http://pleac.sourceforge.net/
smimram has joined #ocaml
smimou has quit [Read error: 110 (Connection timed out)]
gim has quit []
nlv11757__ has quit [Remote closed the connection]
mrchebas has quit ["Leaving"]
<mflux> ooh
pango has joined #ocaml
<humasect_> tewk: when have you last looked at Cameleon?
humasect_ is now known as humasect
tintin has joined #ocaml
<tewk> humasect: 3 months ago 4 maybe?
pango has quit ["Leaving"]
vincenz has joined #ocaml
<humasect> ah ok
<humasect> it has the ocaml gtk builder integrated now as well
<humasect> glade should be fine, but it does extra ocaml-specific stuff i believe. something more than code generation, i think
znutar has joined #ocaml
znutar has quit [K-lined]
Submarine has quit ["Leaving"]
znutar has joined #ocaml
_JusSx_ has quit [Read error: 110 (Connection timed out)]
<mlh_> i thought it hadn't been touched since 2003
pango has joined #ocaml
<humasect> the latest snapshot said 2005 i thought
Riastrad1 has joined #ocaml
Riastradh has quit [Read error: 60 (Operation timed out)]
Riastrad1 is now known as Riastradh
Snark has quit ["Leaving"]
_JusSx_ has joined #ocaml
tintin has quit [Read error: 60 (Operation timed out)]
Submarine has joined #ocaml
monochrom has joined #ocaml
zzorn_away is now known as zzorn
<mlh_> yeah i was looking the new/releases page
<mlh_> news
vezenchio has joined #ocaml
inka has joined #ocaml
Submarine has quit ["Leaving"]
smimram has quit ["?"]
_JusSx_ has quit ["leaving"]
fludd has joined #ocaml
CosmicRay has quit ["Client exiting"]
inka has quit [Read error: 60 (Operation timed out)]
mlh has joined #ocaml
tyler_ has joined #ocaml
<tyler_> What's the proper way to reference an empty list. I've tried let foo = ref [];; but the compiler doesn't like it. I know the type of the list, but I just want it to be initially empty.
<mellum> let (foo: int list ref) = ref [];;
<tyler_> thanks