cjeris changed the topic of #ocaml to: Discussions about the OCaml programming language | http://caml.inria.fr/
pedro_soc has joined #ocaml
pedro__ has quit [Read error: 110 (Connection timed out)]
ulfdoz has quit [Read error: 113 (No route to host)]
ulfdoz_ has joined #ocaml
malc_ has quit ["leaving"]
pantsd has joined #ocaml
beschmi has quit [Read error: 110 (Connection timed out)]
mnemonic has quit ["leaving"]
benny has joined #ocaml
benny_ has quit [Read error: 60 (Operation timed out)]
Mr_Awesome has joined #ocaml
sourcerror has joined #ocaml
postalchris has quit [Read error: 110 (Connection timed out)]
the_dormant has joined #ocaml
Mr_Awesome has quit ["...and the Awesome level drops"]
ramkrsna has joined #ocaml
bluestorm_ has joined #ocaml
pstickne_ has joined #ocaml
pstickne_ has quit [Read error: 104 (Connection reset by peer)]
pantsd has quit ["Leaving."]
the_dormant has quit []
_blackdog has quit [Read error: 60 (Operation timed out)]
_blackdog has joined #ocaml
Demitar has quit [Read error: 113 (No route to host)]
jlouis has quit [Remote closed the connection]
love-pingoo has joined #ocaml
bluestorm_ has quit [Remote closed the connection]
<kelaouchi>
are there any tools for cross compilation ?
mikeX has joined #ocaml
beschmi has joined #ocaml
G_ has joined #ocaml
G has quit [Nick collision from services.]
G_ is now known as G
steele__ has joined #ocaml
beschmi has quit [Read error: 110 (Connection timed out)]
steele__ is now known as beschmi
beschmi has quit ["Leaving"]
Sparkles has joined #ocaml
Submarine has quit [Remote closed the connection]
_blackdog has quit [Connection timed out]
ygrek has joined #ocaml
_blackdog has joined #ocaml
postalchris has joined #ocaml
pedro_soc has quit [Client Quit]
<kelaouchi>
any idea ?
postalchris has quit [Read error: 110 (Connection timed out)]
<kelaouchi>
anybody using bmktrans ?
<kelaouchi>
seems that it constructs tree from an only html file
<kelaouchi>
i am looking for a way to build it from a set of files...
Sparkles has quit [Read error: 110 (Connection timed out)]
malc_ has joined #ocaml
postalchris has joined #ocaml
ygrek has quit [Remote closed the connection]
ygrek has joined #ocaml
LeCamarade has joined #ocaml
<LeCamarade>
Is there a library that enables me to handle strings as litsts? I really miss being able to map, fold, filter, drop and so on in a string.
<flux>
the common (?) approach is to implement functions string -> char list and char list -> string
<LeCamarade>
flux: Okay, but I wonder how the speed is. That's what I've been doing.
<flux>
well, if you're going to do lots of list-like operations, I doubt it'll hurt much
<flux>
creating a new string involves copying also
* LeCamarade
knows lists to be slow. And yet OCaml is working for speed, here.
<LeCamarade>
flux: And I get to pattern-match! :oD Love it.
<LeCamarade>
flux: Yeah, but I trust OCaml's optimisations well enough to do silly things with strings knowing it won't rot on me.
<LeCamarade>
Yet I think they emphasise the [||] in OCaml, because they are essentially saying [] is slow.
<LeCamarade>
And string as string and not [char] for speed.
<LeCamarade>
Still, I am a Worse is Better guy, so let's roll. :oD
pango_ has quit [Remote closed the connection]
<kelaouchi>
# quit ;;
<kelaouchi>
Unbound value quit
<kelaouchi>
what's the problem ?
pango_ has joined #ocaml
<kelaouchi>
using interactive mode
<LeCamarade>
kelaouchi: Maybe you want exit 0;;
<kelaouchi>
exit 0;; works yes
<kelaouchi>
but not quit ;;
<kelaouchi>
why ?
<LeCamarade>
quit isn't not bound - that's why.
<LeCamarade>
It's unknown.
<LeCamarade>
let quit = exit;; Then, it will work. :oD
<kelaouchi>
but it is the way i see in manual to quit interactive mode
<LeCamarade>
Which page?
<kelaouchi>
no LeCamarade, let quit = exit;; quit;; doesn't work neither