hackinghorn has quit [Remote host closed the connection]
hackinghorn has joined #ocaml
hackinghorn has quit [Ping timeout: 276 seconds]
Serpent7776 has joined #ocaml
pi3ce has quit [Ping timeout: 252 seconds]
<discocaml>
<lyhokia> Hello, any one have some experience working with menhir? Is there a way I can run the parser on a stream and being instruct when should I feed more input to the parser?
<discocaml>
<lyhokia> Thanks.
pi3ce has joined #ocaml
pi3ce has quit [Client Quit]
pi3ce has joined #ocaml
pi3ce_ has joined #ocaml
pi3ce has quit [Ping timeout: 272 seconds]
olle has joined #ocaml
myrkraverk_ is now known as myrkraverk
Tuplanolla has joined #ocaml
bartholin has joined #ocaml
Inline has joined #ocaml
tomku has quit [Ping timeout: 252 seconds]
tomku has joined #ocaml
toastal has quit [Ping timeout: 252 seconds]
toastal has joined #ocaml
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
mbuf has joined #ocaml
<discocaml>
<lyhokia> Looks like there is fmlib
olle has quit [Ping timeout: 252 seconds]
micro has quit [Ping timeout: 248 seconds]
micro has joined #ocaml
micro has quit [Ping timeout: 252 seconds]
micro has joined #ocaml
mbuf has quit [Quit: Leaving]
Inline has quit [Ping timeout: 265 seconds]
Inline has joined #ocaml
infinity0 has quit [Remote host closed the connection]
infinity0 has joined #ocaml
germ- has quit [Ping timeout: 276 seconds]
xenu has joined #ocaml
waleee has joined #ocaml
toastal has quit [Quit: Gateway shutdown]
Anarchos has joined #ocaml
Inline has quit [Quit: Leaving]
Inline has joined #ocaml
Anarchos has quit [Quit: Vision[]: i've been blurred!]
dreadedfrog has quit [Ping timeout: 260 seconds]
Inline has quit [Ping timeout: 276 seconds]
Serpent7776 has quit [Ping timeout: 252 seconds]
Inline has joined #ocaml
szkl has quit [Quit: Connection closed for inactivity]
<discocaml>
<.chubak> How do I simulate Scheme's "let-values" in Ocaml?
<discocaml>
<.chubak> Look at this:
<discocaml>
<.chubak> ```ocaml
<discocaml>
<.chubak> type lexeme =
<discocaml>
<.chubak> | LEXM_Integer of string
<discocaml>
<.chubak> | LEXM_Ident of string
<discocaml>
<.chubak> | LEXM_Real of string
<discocaml>
<.chubak>
<discocaml>
<.chubak> let scan_scc code acc callback =
<discocaml>
<.chubak> let scan_integer code' acc' =
<discocaml>
<.chubak> let buf = Buffer.create 20 in