companion_cube changed the topic of #ocaml to: Discussion about the OCaml programming language | http://www.ocaml.org | OCaml 5.0 released(!!1!): https://ocaml.org/releases/5.0.0.html | Try OCaml in your browser: https://try.ocamlpro.com | Public channel logs at https://libera.irclog.whitequark.org/ocaml/
sand_dull has quit [Quit: leaving]
sand_dull has joined #ocaml
sand_dull has quit [Client Quit]
sand_dull has joined #ocaml
sand_dull has quit [Quit: leaving]
sand_dull has joined #ocaml
sand_dull has quit [Client Quit]
TrillionEuroNote has quit [Ping timeout: 260 seconds]
TrillionEuroNote has joined #ocaml
chrisz has quit [Ping timeout: 240 seconds]
chrisz has joined #ocaml
brettgilio has quit [Remote host closed the connection]
brettgilio has joined #ocaml
bartholin has joined #ocaml
Serpent7776 has joined #ocaml
azimut has quit [Ping timeout: 252 seconds]
dnh has joined #ocaml
dnh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alexherbo2 has joined #ocaml
mro has joined #ocaml
mro_ has joined #ocaml
<discocaml> <joanita9540> Hi everyone, I am Nakityo Joanita, an outreachy applicant eager to contribute towards OCaml projects.
bartholin has quit [Quit: Leaving]
<discocaml> <patricoferris> Very happy to see so many Outreachy applicants, to try and keep the noise down on this main channel please do use the dedicated #outreachy channel for any introductions you'd like to give or questions you might have, thanks! :))
mro has quit [Remote host closed the connection]
mro has joined #ocaml
mro_ has quit [Remote host closed the connection]
palainp has joined #ocaml
palainp has left #ocaml [#ocaml]
mro has quit [Remote host closed the connection]
mro has joined #ocaml
alexherbo2 has quit [Remote host closed the connection]
mro has quit [Remote host closed the connection]
mro_ has joined #ocaml
mro__ has joined #ocaml
mro__ has quit [Remote host closed the connection]
alexherbo2 has joined #ocaml
mro_ has quit [Remote host closed the connection]
mro has joined #ocaml
mro_ has joined #ocaml
mro_ has quit [Remote host closed the connection]
dnh has joined #ocaml
bibi_ has joined #ocaml
alexherbo2 has quit [Ping timeout: 245 seconds]
mro_ has joined #ocaml
mro has quit [Read error: Connection reset by peer]
mro_ has quit [Read error: Connection reset by peer]
mro has joined #ocaml
mro has quit [Remote host closed the connection]
mro has joined #ocaml
bibi_ has quit [Ping timeout: 255 seconds]
neiluj has joined #ocaml
<neiluj> Hi!
<neiluj> how do you load a git submodule when building a project with OPAM?
<neiluj> the file Configure is not found because a git submodule is not loaded
mro has quit [Quit: Leaving]
mro has joined #ocaml
<reynir> neiluj: I would make sure the contents of the submodule is in the source archive, or put an archive in extra-source with the contents of the submodule
<neiluj> thanks!
xd1le has joined #ocaml
alexherbo2 has joined #ocaml
bibi_ has joined #ocaml
mro has quit [Quit: Leaving]
mro has joined #ocaml
mro has quit [Client Quit]
mro has joined #ocaml
<neiluj> why "# Error: Library "pari-bindings" not found."?
<neiluj> it is a dependency of the library being built
<neiluj> it is present in the opam file: depends: [ "pari-bindings" {dev} ... ]
<neiluj> "opam install pari ." succeeds on my machine
<neiluj> oh okay {=version} should be used
alexherbo2 has quit [Remote host closed the connection]
alexherbo2 has joined #ocaml
mro has quit [Ping timeout: 260 seconds]
bartholin has joined #ocaml
bibi_ has quit [Ping timeout: 264 seconds]
rwmjones has quit [Quit: ZNC - 1.6.0 - http://znc.in]
rwmjones_ is now known as rwmjones
alexherbo2 has quit [Remote host closed the connection]
alexherbo2 has joined #ocaml
bartholin has quit [Quit: Leaving]
neiluj has quit [Quit: Client closed]
dnh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dnh has joined #ocaml
mro has joined #ocaml
mro has quit [Read error: Connection reset by peer]
mro has joined #ocaml
bartholin has joined #ocaml
<Leonidas> Topic should probably be updated to mention https://ocaml.org/releases/5.1.0
TrillionEuroNote has quit [Ping timeout: 264 seconds]
TrillionEuroNote has joined #ocaml
chrisz has quit [Ping timeout: 258 seconds]
chrisz has joined #ocaml
azimut has joined #ocaml
sand_dull has joined #ocaml
sand_dull has quit [Remote host closed the connection]
alexherbo2 has quit [Ping timeout: 245 seconds]
mro has quit [Ping timeout: 255 seconds]
bibi_ has joined #ocaml
bibi_ has quit [Ping timeout: 258 seconds]
mro has joined #ocaml
mro has quit [Quit: Leaving]
bibi_ has joined #ocaml
<src> does someone know why this https://paste.sr.ht/blob/96ce6936d467cf050348318dca629038884a143e doesn't print "hd" ... I know I'm not raising the exception because I only have a simple pattern match
<src> but `List.hd []` should match `exception (Failure s)` with returns `s` as a string
<discocaml> <._null._> You have a comma. You shouldn't use `let _ = `, it erases the type and here you would have seen that it was not unit
<src> oh god thank you
<src> (I just called you god btw... yep)
<src> the plights of a beginner handling multiple langs
dnh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dnh has joined #ocaml
dnh has quit [Ping timeout: 260 seconds]
alexherbo2 has joined #ocaml
alexherbo2 has quit [Ping timeout: 245 seconds]
bibi_ has quit [Quit: Konversation terminated!]
Tuplanolla has joined #ocaml
bibi_ has joined #ocaml
<src> https://paste.sr.ht/blob/9711a931ace09d5cdcda6dd97c0db659a3bd3dcd why would "division" work, but "negative" give me an error regarding `assert_equal`: This expression has type int but an expression was expected of type unit
<src> I hope it's enough context to pinpoint an error... is there something about negative numbers here?
bartholin has quit [Quit: Leaving]
<src> alright if I surround the neg values with `()` it works sorry
<discocaml> <._null._> The disambiguation between binary int minus and unary int/float minus is hard to figure out
<src> oh I see
<discocaml> <._null._> But most of the time, if the token before the `-` is not something like a `(`, you need to wrap in parentheses
Serpent7776 has quit [Quit: leaving]
dnh has joined #ocaml
dnh has quit [Ping timeout: 248 seconds]
dnh has joined #ocaml
dnh has quit [Ping timeout: 258 seconds]
azimut has quit [Ping timeout: 252 seconds]
alphacentauri has quit [Quit: WeeChat 4.0.5]
alphacentauri has joined #ocaml