|marius| has quit [Remote host closed the connection]
|marius| has joined #ocaml
|marius| has quit [Remote host closed the connection]
|marius| has joined #ocaml
mjonsson has joined #ocaml
jakedouglas has quit [Quit: Leaving.]
elehack has joined #ocaml
verte has quit [Quit: ~~~ Crash in JIT!]
<krankkatze>
do nested functions affect performances?
<elehack>
krankkatze: how so?
<elehack>
are you asking if they are slower than non-nested functions?
<krankkatze>
yes
<elehack>
execution inside the function shouldn't be any slower.
<elehack>
calling it might be slightly slower.
<elehack>
calling into closures is slightly slower than calling plain functions.
<Associat0r>
doesn't OCaml do lambda lifting?
<elehack>
i think so, at least to some extent.
* elehack
is not overly good with functional compiler internals
<elehack>
krankkatze: but with this, and with pretty much anything else, go for what's readable. worry about speed if you've measured it and found it to be too slow.
<krankkatze>
ok, thanks :)
|marius| has quit [Remote host closed the connection]
|marius| has joined #ocaml
|marius| has quit [Remote host closed the connection]
ente has joined #ocaml
<ente>
hello
<ente>
is there an ocaml compiler with jvm code as output format?
<elehack>
IIRC performance isn't very good, though.
<ente>
thanks
<ente>
hmm,... performance...
<ente>
I'll probably end up writing scala once I get out of that stupid lecture.
<ente>
they make me use java, and I'm not really happy with it
<elehack>
:(
<ente>
I hope the next lectures will be happy with any .class, independent on the language it's written in ;)
travisbrady has quit [Quit: travisbrady]
Tianon has quit [Ping timeout: 248 seconds]
Tianon has joined #ocaml
Tianon has quit [Changing host]
Tianon has joined #ocaml
mjonsson_ has joined #ocaml
mjonsson_ has quit [Client Quit]
valross has joined #ocaml
<chee>
tuareg<3
Associat0r has quit [Quit: Associat0r]
elehack has quit [Quit: not a typewriter]
Associat0r has joined #ocaml
seafood has quit [Quit: seafood]
seafood has joined #ocaml
Associat0r has quit [Quit: Associat0r]
ulfdoz has joined #ocaml
jakedouglas has joined #ocaml
sshc_ has joined #ocaml
sshc has quit [Ping timeout: 276 seconds]
patronus has quit [Remote host closed the connection]
patronus has joined #ocaml
LionMade0fLions has quit [Ping timeout: 276 seconds]
ulfdoz has quit [Ping timeout: 240 seconds]
ygrek has joined #ocaml
LionMade0fLions has joined #ocaml
chee has quit [Ping timeout: 260 seconds]
Amorphous has quit [Ping timeout: 245 seconds]
jakedouglas has quit [Quit: Leaving.]
Yoric has joined #ocaml
marteo has joined #ocaml
Amorphous has joined #ocaml
coucou747 has quit [Quit: 0x2a]
Yoric has quit [Quit: Yoric]
ftrvxmtrx has quit [Quit: Leaving]
aja has quit [Read error: Connection reset by peer]
aja has joined #ocaml
ygrek has quit [Ping timeout: 245 seconds]
ikaros has joined #ocaml
ttamttam has joined #ocaml
ygrek has joined #ocaml
ikaros has quit [Quit: Leave the magic to Houdini]
Tianon has quit [Ping timeout: 260 seconds]
Yoric has joined #ocaml
ftrvxmtrx has joined #ocaml
rwmjones has quit [*.net *.split]
hcarty has quit [*.net *.split]
rwmjones has joined #ocaml
hcarty has joined #ocaml
aja has quit [Excess Flood]
aja has joined #ocaml
seafood has quit [Quit: seafood]
Tianon has joined #ocaml
Tianon has quit [Changing host]
Tianon has joined #ocaml
verte has joined #ocaml
th5 has joined #ocaml
ygrek has quit [Ping timeout: 245 seconds]
aja has quit [Read error: Connection reset by peer]
bacam has joined #ocaml
verte has quit [Disconnected by services]
verte has joined #ocaml
verte has quit [Quit: ~~~ Crash in JIT!]
th5 has quit [Quit: th5]
ygrek has joined #ocaml
th5 has joined #ocaml
_andre has joined #ocaml
mellum has quit [Ping timeout: 276 seconds]
verte has joined #ocaml
Submarine has joined #ocaml
metasyntax has quit [Quit: Be seeing you.]
th5 has quit [Read error: Connection reset by peer]
th5 has joined #ocaml
avsm has joined #ocaml
Anarchos has joined #ocaml
ygrek has quit [Ping timeout: 245 seconds]
metasyntax has joined #ocaml
th5 has quit [Read error: Connection reset by peer]
th5_ has joined #ocaml
th5_ is now known as th5
valross has quit [Quit: Ex-Chat]
rwmjones has quit [Ping timeout: 246 seconds]
Associat0r has joined #ocaml
ygrek has joined #ocaml
verte has quit [Quit: ~~~ Crash in JIT!]
ygrek has quit [Ping timeout: 245 seconds]
barismetin has joined #ocaml
joewilliams_away is now known as joewilliams
ccasin has joined #ocaml
ccasin has quit [Quit: Leaving]
ccasin has joined #ocaml
jakedouglas has joined #ocaml
ttamttam has quit [Remote host closed the connection]
dcolish has quit [Excess Flood]
|marius| has joined #ocaml
sepp2k has joined #ocaml
dcolish has joined #ocaml
ccasin has quit [Quit: Leaving]
|marius| has quit [Remote host closed the connection]
Yoric has quit [Quit: Yoric]
th5 has quit [Quit: th5]
ftrvxmtrx has quit [Quit: Leaving]
barismetin has quit [Remote host closed the connection]
Anarchos has quit [Quit: Vision[0.9.7-H-090423]: i've been blurred!]
Associat0r has quit [Read error: Connection reset by peer]
chee has joined #ocaml
Associat0r has joined #ocaml
|marius| has joined #ocaml
|marius| has quit [Remote host closed the connection]
|marius| has joined #ocaml
joewilliams is now known as joewilliams_away
bzzbzz has quit [Quit: leaving]
thieusoai has joined #ocaml
ccasin has joined #ocaml
<hcarty>
What is the proper terminology to describe allowing one to write (let foo = 10 in printf "%(foo:d)")? Similar to how Perl allows "$my_variable" expansion in strings...
<hcarty>
Is variable interpolation correct?
<flux>
I would all it that way
<hcarty>
flux: Ok, thanks
<hcarty>
From my position of relative ignorance, it looks like it would be a straightforward and useful addition to pa_string in Batteries. But hacking on camlp4 extensions is still mostly opaque to me.
Submarine has quit [Remote host closed the connection]
travisbrady has joined #ocaml
ccasin has quit [Quit: Leaving]
ulfdoz has joined #ocaml
joewilliams_away is now known as joewilliams
Anarchos has joined #ocaml
Anarchos has quit [Quit: Vision[0.9.7-H-090423]: i've been blurred!]
Yoric has joined #ocaml
ttamttam has joined #ocaml
bzzbzz has joined #ocaml
marteo has quit [*.net *.split]
_andre has quit [Quit: leaving]
jakedouglas has quit [Quit: Leaving.]
marteo has joined #ocaml
ttamttam has quit [Quit: Leaving.]
philtor has joined #ocaml
ulfdoz has quit [Ping timeout: 246 seconds]
Anarchos has joined #ocaml
jonafan has quit [Quit: Leaving]
rwmjones has joined #ocaml
jakedouglas has joined #ocaml
Yoric has quit [Quit: Yoric]
Yoric has joined #ocaml
Modius has quit [Quit: I'm big in Japan]
avsm has quit [Quit: Leaving.]
mjonsson has quit [Ping timeout: 264 seconds]
verte has joined #ocaml
joewilliams is now known as joewilliams_away
ftrvxmtrx has joined #ocaml
ztfw has quit [Quit: ERC Version 5.3 (IRC client for Emacs)]
Yoric has quit [Ping timeout: 248 seconds]
Yoric has joined #ocaml
Anarchos has quit [Quit: Vision[0.9.7-H-090423]: i've been blurred!]
Yoric has quit [Client Quit]
philtor has quit [Ping timeout: 240 seconds]
marteo has quit [Quit: Debian GNU/Hurd is Good.]
verte has quit [Quit: ~~~ Crash in JIT!]
julm has quit [Remote host closed the connection]
julm has joined #ocaml
joewilliams_away is now known as joewilliams
joewilliams is now known as joewilliams_away
ftrvxmtrx has quit [Read error: Connection reset by peer]
brendan has quit [Read error: Connection reset by peer]