vezenchio has quit ["Ayn Rand encapsulates the rage that every teenager feels on finding that his first paycheque has had taxes taken out of it"]
mlh has quit [Client Quit]
mlh has joined #ocaml
Smerdyakov has joined #ocaml
Enveigler_ has joined #ocaml
Enveigler has quit [Read error: 110 (Connection timed out)]
mlh has quit [Client Quit]
Sonarman has quit [Read error: 145 (Connection timed out)]
Smerdyakov has quit [Read error: 104 (Connection reset by peer)]
ulfdoz_ has joined #ocaml
ulfdoz has quit [Read error: 110 (Connection timed out)]
araujo has quit ["Programs must be written for people to read, and only incidentally for machines to execute"]
pango has quit [Read error: 113 (No route to host)]
bitwiseshiftleft has joined #ocaml
<bitwiseshiftleft>
question: i have a program containing c code, I compile it using ocamlopt, and it fails to link on undefined identifier "ocaml_init_exceptions"
<bitwiseshiftleft>
if i compile it with ocamlc, it links fine
<bitwiseshiftleft>
why does this happen, and how can i fix it?
<bitwiseshiftleft>
... i'll just ask on the lists
bitwiseshiftleft has left #ocaml []
Enveigler has joined #ocaml
Enveigler_ has quit [Read error: 110 (Connection timed out)]
<ulfdoz_>
re
araujo has joined #ocaml
Herrchen has joined #ocaml
Herrchen has quit [Client Quit]
Herrchen has joined #ocaml
Enveigler has quit [Read error: 110 (Connection timed out)]
Snark has joined #ocaml
<Snark>
slt
Enveigler has joined #ocaml
<Enveigler>
What does the ! in ' !backing#set_foreground `BLACK;' signify?
<det>
defererences a reference
<Enveigler>
Thanks.
mrvn has joined #ocaml
<Enveigler>
Is there a shorthand for let x = e1 in let y = e2 in let z = e3 in ...?
<mflux_>
well
<mflux_>
let x = e1 and y = e2 in ..
<mflux_>
and let (x, y) = (e1, e2) in ..
<mflux_>
both of which are difficult if e2 depends on x
<Enveigler>
Ah. I thought I remembered seeing the last of your two syntaxes used somewhere, but I couldn't locate it in the docs. That perfect in this case as the expressions are simple.
mrvn_ has quit [Read error: 110 (Connection timed out)]
pango has joined #ocaml
pango has quit [Remote closed the connection]
pango has joined #ocaml
<ulfdoz_>
bye
Enveigler has quit [Read error: 110 (Connection timed out)]
karryall has joined #ocaml
Skal has joined #ocaml
daapp has joined #ocaml
_fab has joined #ocaml
_fab has quit [Remote closed the connection]
araujo has quit ["Programs must be written for people to read, and only incidentally for machines to execute"]
daapp has left #ocaml []
slashvar[lri] has joined #ocaml
Submarine has joined #ocaml
Submarine has quit [Remote closed the connection]
batdog|gone is now known as batdog
vezenchio has joined #ocaml
Submarine has joined #ocaml
_fab has joined #ocaml
Submarine has quit ["Leaving"]
TeXitoi has quit [Read error: 131 (Connection reset by peer)]
TeXitoi has joined #ocaml
Gueben has joined #ocaml
mrsolo has joined #ocaml
karryall has quit [Remote closed the connection]
Enveigler_ has joined #ocaml
<Snark>
good night
Snark has left #ocaml []
Enveigler_ has quit [Read error: 104 (Connection reset by peer)]
Enveigler_ has joined #ocaml
Sonarman has joined #ocaml
__DL__ has quit [Read error: 104 (Connection reset by peer)]
Gueben has quit ["plouf"]
Enveigler_ has quit [Read error: 104 (Connection reset by peer)]
Enveigler_ has joined #ocaml
vezenchio has quit ["Ayn Rand encapsulates the rage that every teenager feels on finding that his first paycheque has had taxes taken out of it"]
cjohnson has joined #ocaml
Skal has quit ["Client exiting"]
<Enveigler_>
If you need to extract several members from a structure for use in an equation (eg. x, y, width and hieght from a Gdk.Rectangle), is there a "short hand" for doing so.
<Enveigler_>
Rather than
<Enveigler_>
let x = Gdk.Rectangle.x area in
<Enveigler_>
let y = Gdk.Rectangle.y area in
<Enveigler_>
let width = Gdk.Rectangle.width area in
<Enveigler_>
let height = Gdk.Rectangle.width area in