coldpress66 has quit [Remote host closed the connection]
coldpress69 has joined #ocaml
coldpress69 has quit [Remote host closed the connection]
chripell has joined #ocaml
ofzyh has joined #ocaml
Haudegen has joined #ocaml
vicfred has quit [Quit: Leaving]
dckc has quit [Ping timeout: 260 seconds]
dckc has joined #ocaml
bartholin has quit [Quit: Leaving]
jeroud_ has quit []
jeroud has joined #ocaml
jbrown has joined #ocaml
Serpent7776 has joined #ocaml
andreas303 has quit [Ping timeout: 240 seconds]
dborisog has joined #ocaml
andreas303 has joined #ocaml
rnrwashere has joined #ocaml
rnrwashere has quit [Client Quit]
gareppa has joined #ocaml
gareppa has quit [Quit: Leaving]
kleisli has quit [Ping timeout: 265 seconds]
stux|RC-only has quit [Ping timeout: 256 seconds]
mfp has joined #ocaml
olle_ has joined #ocaml
nullcone has quit [Quit: Connection closed for inactivity]
stux|RC-only has joined #ocaml
Anarchos has joined #ocaml
porchetta has quit [Ping timeout: 256 seconds]
porchetta has joined #ocaml
tane has joined #ocaml
porchetta has quit [Ping timeout: 256 seconds]
porchetta has joined #ocaml
jco has joined #ocaml
<jco>
Hello! Building installing a local program with dune given two opam files. Our project structure is the following: we have two projects: one being in a subdirectory bot-components
<jco>
and the other one is at the root of the directory
<jco>
we generate the opam files for the two projects with a dune-project
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
<jco>
but when we install them with opam there is an error which indicates that a dune-project containing a field (name <>) should be added in bot-components/dune-project
jco1 has joined #ocaml
jco has quit [Ping timeout: 272 seconds]
Anarchos has joined #ocaml
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
dckc has quit [Ping timeout: 272 seconds]
dckc has joined #ocaml
peterbb has joined #ocaml
peterbb has quit [Quit: peterbb]
peterbb has joined #ocaml
peterbb has quit [Remote host closed the connection]
leah2 has quit [Ping timeout: 260 seconds]
vicfred has joined #ocaml
olle_ has quit [Read error: Connection reset by peer]
leah2 has joined #ocaml
HyperTables has joined #ocaml
<HyperTables>
how do I use this? `val pp_hum : Stdlib.Format.formatter -> t -> unit` ... I reckon it's printfable to something but I'm not too familiar with that
<HyperTables>
I'd like to print a sexp (type `t`) to standard output or standard error (either suits me)
<companion_cube>
(@. inserts a new line and flushes)
<HyperTables>
thanks
muskan has joined #ocaml
oriba has joined #ocaml
tane has quit [Quit: Leaving]
peterbb has joined #ocaml
<oriba>
I'm looking for a simple notty-example, something like open terminal, write some text here, write other text there (as if writing into two regions / subwindows with ncrurses). The examples use notty to just do enhanced fance printing (enhanced printf). But I need an example on a terminal application with different regions/subwindows.
<oriba>
where to find such an example?
chripell has quit [Ping timeout: 246 seconds]
dborisog has quit [Ping timeout: 260 seconds]
muskan has quit [Ping timeout: 245 seconds]
HyperTables has quit [Remote host closed the connection]
amiloradovsky has joined #ocaml
andreas303 has quit [Remote host closed the connection]
andreas303 has joined #ocaml
<olle>
the f is notty?
<rgrinberg>
I don't think notty is enough for that, you need to use something like lwd on top
mbuf has quit [Quit: Leaving]
<flux1>
is OCaml try catch 100% free if you don't catch anything?
<flux1>
..I mean, an exception isn't thrown
<companion_cube>
it's pretty cheap
bartholin has joined #ocaml
Hrundi_V_Bakshi has joined #ocaml
<oriba>
rgrinberg: notty has Notty.Term, Notty_unix, should be enough for a terminal application? With lwd, you mean https://github.com/let-def/lwd ?
<companion_cube>
it's enough, but it's manual, is all
<oriba>
so, notty without something on top is more work than curses?