Banana has quit [Read error: 54 (Connection reset by peer)]
Banana has joined #ocaml
KrispyKringle has quit [Read error: 113 (No route to host)]
KrispyKr1ngle is now known as KrispyKringle
mbh has joined #ocaml
mbh has quit ["Lost terminal"]
async has joined #ocaml
smimou has quit ["?"]
lus|wats has joined #ocaml
lus|wats has quit [Client Quit]
Smerdyakov has joined #ocaml
bzzbzz has quit ["leaving"]
zxy_ has quit [Read error: 110 (Connection timed out)]
Smerdyakov has quit ["I'm gone!"]
vezenchio has quit ["Greenspun's Tenth Rule of Programming: any sufficiently complicated C or Fortran program contains an ad hoc informally-specif]
gim has quit ["gn"]
CosmicRay has joined #ocaml
ne1 has quit ["Few people understand understanding."]
durnew has quit [Read error: 60 (Operation timed out)]
mrsolo has quit ["Leaving"]
mrsolo has joined #ocaml
shawn has joined #ocaml
<KrispyKringle>
so i may be an idiot--probably, in fact--but which Unix.error type is returned from trying to Unix.openfile on a non-existent filename?
<mflux>
ENOENT - man 2 open
<KrispyKringle>
thanks
<KrispyKringle>
whoops. i was browsing the manual's error list, and just missed that somehow. i looked multiple times, too!
<KrispyKringle>
thanks.
<KrispyKringle>
hmm. Apparently this syntax is broken: Unix.gmtime Unix.gettimeofday. It complains that i'm feeding gmtime an argument of type unit->float. What is the correct syntax, so that the output of gettimeofday is the argument?
<KrispyKringle>
other than let t = Unix.gettimeofday in let time = Unix.gmtime t