vezenchio has quit ["\o/ in mochintin namocniuh \o/"]
ski has quit ["Tralala"]
zigong has quit [Remote closed the connection]
exa has quit [Remote closed the connection]
bzzbzz has joined #ocaml
Nutssh has joined #ocaml
Herrchen_ has joined #ocaml
Herrchen has quit [Read error: 110 (Connection timed out)]
Nutssh has quit ["Client exiting"]
booyaa has joined #ocaml
interferon has joined #ocaml
interferon has quit [Remote closed the connection]
Smerdyakov has quit []
booyaa has quit ["leaving"]
threeve has quit []
mw has quit [herbert.freenode.net irc.freenode.net]
juri has quit [herbert.freenode.net irc.freenode.net]
vincenz has quit [herbert.freenode.net irc.freenode.net]
oracle1 has quit [herbert.freenode.net irc.freenode.net]
mw has joined #ocaml
oracle1 has joined #ocaml
pango__ has joined #ocaml
pango_ has quit [Read error: 110 (Connection timed out)]
Korollary has quit [Read error: 110 (Connection timed out)]
juri has joined #ocaml
vincenz has joined #ocaml
vezenchio has joined #ocaml
pango__ is now known as pango
__DL__ has joined #ocaml
Demitar has quit [Connection timed out]
Demitar has joined #ocaml
moea has joined #ocaml
<moea>
Int64 has it's own abs function, and im doing "open Int64", but i only want to use it's bits_of_float function
<moea>
though when i do (abs 2), ocaml uses Int64's abs function
<Submarine>
why don't you use Abs.bits_of_float ?
<moea>
what is "Abs" ?
<Submarine>
woops
<Submarine>
Int64.
<moea>
because the number im using abs on isn't an Int64
<Submarine>
I mean, if you don't want to use "open", why do you use it? :-)
<Submarine>
so use Pervasives.bits_of_float
<moea>
there isn't one?
<moea>
isn't it possible just to use some of the functions from Int64?
<moea>
if some of my numbers are Int64's, and some arent?
<Submarine>
I don't understand what you want to do.
<moea>
i want to use *only* the Int64.bits_of_float function, without trampling all of the pervasive functions with conflicting names, like abs()
<Submarine>
so do not use "open"
<moea>
what can i use instead?
<Submarine>
and simply write: Int64..bits_of_float
<Submarine>
and simply write: Int64.bits_of_float
<moea>
oh, i didn't know you could do that
<moea>
thanks :)
Submarine has quit ["Leaving"]
Hipo has quit [Read error: 104 (Connection reset by peer)]
Hipo has joined #ocaml
zvrba has quit ["leaving"]
Purice has joined #ocaml
interferon has joined #ocaml
Purice has quit [Remote closed the connection]
Smerdyakov has joined #ocaml
interferon has quit [Remote closed the connection]
Snark has joined #ocaml
threeve has joined #ocaml
Skal has joined #ocaml
dan2_ has quit [Read error: 110 (Connection timed out)]
MisterC has joined #ocaml
Smerdyakov has quit ["campus"]
Korollary has joined #ocaml
MisterC has quit ["Client exiting"]
ski has joined #ocaml
Skal has quit ["Client exiting"]
Skal has joined #ocaml
<ax>
i have a question here, how can I use modules like Str and Graphics in the interpreter? I always get the undefined reference error when doing things like Str.regexp etc, so how do i explicitly load that library in the intepreter?
<avlondono>
ocaml str.cma
<avlondono>
or #load "str.cma"
<ax>
ok, cool, i was trying #load but i wasn't quite getting it right i don't think
<ax>
man, there are quite a few errors in this cook book webpage for ocaml