spew has quit [Quit: Connection closed for inactivity]
dborisog has joined #ocaml
kvik has quit [Changing host]
kvik has joined #ocaml
MilenaDevi has joined #ocaml
MilenaDevi has quit [Client Quit]
amiloradovsky has quit [Ping timeout: 240 seconds]
nicoo has quit [Ping timeout: 240 seconds]
nicoo has joined #ocaml
mfp has quit [Ping timeout: 256 seconds]
vicfred has quit [Quit: Leaving]
GeoffK has quit [Quit: Leaving]
vicfred has joined #ocaml
_whitelogger has joined #ocaml
mbuf has joined #ocaml
vicfred_ has joined #ocaml
vicfred has quit [Ping timeout: 240 seconds]
CourtneyTai has joined #ocaml
CourtneyTai has quit [Client Quit]
narimiran has joined #ocaml
vicfred_ has quit [Quit: Leaving]
vicfred has joined #ocaml
dckc has quit [Ping timeout: 258 seconds]
dckc has joined #ocaml
Haudegen has joined #ocaml
mbuf has quit [Quit: Leaving]
rgherdt has joined #ocaml
amiloradovsky has joined #ocaml
amiloradovsky has quit [Ping timeout: 240 seconds]
amiloradovsky has joined #ocaml
mfp has joined #ocaml
raver has quit [Remote host closed the connection]
AliciaAway has joined #ocaml
AliciaAway has quit [Client Quit]
gareppa has joined #ocaml
gareppa has quit [Quit: Leaving]
TheLemonMan has joined #ocaml
gareppa has joined #ocaml
gareppa has quit [Quit: Leaving]
gareppa has joined #ocaml
gareppa has quit [Quit: Leaving]
gareppa has joined #ocaml
mbuf has joined #ocaml
gareppa has quit [Remote host closed the connection]
amiloradovsky has quit [Remote host closed the connection]
amiloradovsky has joined #ocaml
so has quit [*.net *.split]
Khady has quit [*.net *.split]
cthuluh has quit [*.net *.split]
lyxia has quit [*.net *.split]
notnotdan has quit [*.net *.split]
cthuluh has joined #ocaml
lyxia has joined #ocaml
notnotdan has joined #ocaml
so has joined #ocaml
vesper11 has quit [Ping timeout: 264 seconds]
vesper11 has joined #ocaml
rpcope has quit [Ping timeout: 264 seconds]
shenghi has quit [*.net *.split]
sonologico has joined #ocaml
lyxia has quit [Remote host closed the connection]
lyxia has joined #ocaml
rgherdt has quit [Ping timeout: 272 seconds]
dborisog has quit [Ping timeout: 256 seconds]
Anarchos has joined #ocaml
Anarchos has quit [Client Quit]
sonologico has quit [Remote host closed the connection]
sonologico has joined #ocaml
raver has joined #ocaml
rgherdt has joined #ocaml
rgherdt has left #ocaml [#ocaml]
BeatriceFer has joined #ocaml
sonologico has quit [Remote host closed the connection]
BeatriceFer has quit [Client Quit]
Anarchos has joined #ocaml
rpcope has joined #ocaml
mbuf has quit [Quit: Leaving]
amiloradovsky has quit [Ping timeout: 240 seconds]
narimiran has quit [Quit: leaving]
Hrundi_V_Bakshi has joined #ocaml
TheLemonMan has quit [Quit: "It's now safe to turn off your computer."]
BiancaRagazza has joined #ocaml
BiancaRagazza has quit [Client Quit]
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
madroach has quit [Read error: Connection reset by peer]
madroach has joined #ocaml
Haudegen has quit [Quit: No Ping reply in 180 seconds.]
tane has joined #ocaml
Haudegen has joined #ocaml
amiloradovsky has joined #ocaml
Jesin has quit [Quit: Leaving]
Jesin has joined #ocaml
raver has quit [Remote host closed the connection]
ArthurStrong has joined #ocaml
<ArthurStrong>
Hi all. What is the easiest way just to print structure, like "print" in Python?
bw1 has joined #ocaml
amiloradovsky has quit [Ping timeout: 240 seconds]
muskan has joined #ocaml
<labor[m]>
There is no simple way. You can use a ppx for that.
<ArthurStrong>
labor[m]: why? It's because OCaml is strongly typed?
<labor[m]>
Because it's statically typed. Types are not known at run time.
<ArthurStrong>
OK
<ArthurStrong>
2nd question. I want to split a list using predicate. Say, list of strings: "0", "a", "1", "b"... predicate: isnumber? output=[["0", "a"], ["1", "b"]...
<ArthurStrong>
Is there something ready?
<ArthurStrong>
I mean, predicate shows beginning of a sublist