Algebr`` has quit [Remote host closed the connection]
Algebr`` has joined #ocaml
jnavila has joined #ocaml
dhil has joined #ocaml
freusque has joined #ocaml
antkong has quit [Quit: antkong]
jnavila has quit [Ping timeout: 240 seconds]
antkong has joined #ocaml
alienbot has joined #ocaml
Algebr`` has quit [Ping timeout: 256 seconds]
freusque has quit [Ping timeout: 255 seconds]
ansiwen has quit [Quit: No Ping reply in 180 seconds.]
fraggle_ has quit [Ping timeout: 255 seconds]
ansiwen has joined #ocaml
fraggle_ has joined #ocaml
freusque has joined #ocaml
dhil has quit [Ping timeout: 255 seconds]
AltGr has joined #ocaml
zpe has joined #ocaml
govg has quit [Ping timeout: 258 seconds]
gjaldon has joined #ocaml
snhmib has quit [Ping timeout: 248 seconds]
larhat has joined #ocaml
<companion_cube>
yeah, I saw
<companion_cube>
thanks ^^
<orbitz>
companion_cube: any other grunt-work you need done for 1.0? Just functions that you've already spec'd out and just don't have the time to type?
<companion_cube>
not really, I have some changes to make to CCFormat so that Drup does not complain, but otherwise it's mostly fine
Flerex has joined #ocaml
Flerex has quit [Client Quit]
<orbitz>
companion_cube: I'm at work btw so I'll make the change you requested once I get home
<companion_cube>
sure
<companion_cube>
it's not urgent, is it? :)
<orbitz>
I'd like it in 1.0, is all :)
<companion_cube>
heh
<companion_cube>
I think I will make a release candidate for 1.0, for once
<reynir>
Drup-approved CCFormat :P
snhmib has joined #ocaml
ocp has joined #ocaml
mengu has joined #ocaml
ocp has quit [Quit: Leaving.]
malc_ has left #ocaml ["ERC (IRC client for Emacs 25.0.50.2)"]
ltadeu has joined #ocaml
shepi has quit [Ping timeout: 260 seconds]
sfri has quit [Ping timeout: 252 seconds]
sfri has joined #ocaml
mengu has quit [Remote host closed the connection]
mengu has joined #ocaml
govg has joined #ocaml
n342 has left #ocaml ["WeeChat 1.7"]
mfp has joined #ocaml
kakadu has joined #ocaml
silver has joined #ocaml
Guest26 has joined #ocaml
antkong has quit [Quit: antkong]
_andre has joined #ocaml
dhil has joined #ocaml
ocaml480 has joined #ocaml
<ocaml480>
let vbox = GPack.vbox ~packing:window#add () in window#connect#destroy ~callback:Main.quit;
<ocaml480>
This is lblgtk tutorial. Seems to be a different OCaml syntax. I've not code like that till now.
<ocaml480>
lablgtk code has to be compiled always ?
nomicflux has quit [Quit: nomicflux]
<reynir>
No, I don't think so
mengu has quit [Quit: Leaving...]
<thizanne>
ocaml480: you can #use "your_file.ml"
<thizanne>
but you need to load necessary modules before
<thizanne>
(like lablgtk)
<adrien>
#require "lablgtk.auto-init"
<adrien>
or use the lablgtk toplevel
jao has quit [Ping timeout: 240 seconds]
nomicflux has joined #ocaml
xorpse has joined #ocaml
FreeBirdLjj has quit [Ping timeout: 248 seconds]
nomicflux has quit [Client Quit]
troydm has joined #ocaml
Denommus has joined #ocaml
Denommus` has joined #ocaml
Denommus has quit [Ping timeout: 240 seconds]
dhil has quit [Ping timeout: 245 seconds]
<ocaml480>
I have lablgtk code along with other OCaml code in one file.
<ocaml480>
#require "lablgtk2";; I use
dhil has joined #ocaml
<ocaml480>
let a = Printexc.print main () How do I call main ?
<flux>
that calls main
<flux>
what was the question?-)
<ocaml480>
I have lablgtk code along with other OCaml code in one file. Don't have to compile. I am told.
<ocaml480>
How do I bootstrap main ?
<ocaml480>
#require "lablgtk2";; Modules are loaded in toplevel.
rgrinberg has joined #ocaml
<ocaml480>
Have to go. Will ask again.
Onemorenickname_ has joined #ocaml
<Onemorenickname_>
hello people
<Onemorenickname_>
i'm getting an obscure error, and i think printing the inferred types so far could help me
<Onemorenickname_>
how can i do so without using the interpreter ?
<companion_cube>
you could try to use merlin, probably the best
<Onemorenickname_>
compatible with ocamlbuild ?
<theblatte>
you could also annotate functions or values with some types, either the ones you expect or just "unit", to get ocaml to complain in specific places
<Onemorenickname_>
theblatte, that's what i've done, but i got an error i still don't understand at an unexpectad place
<Onemorenickname_>
i think an inference has been made to constrain the general type of the previous function
ocaml480 has quit [Ping timeout: 260 seconds]
<Onemorenickname_>
but given i don't have access to its type, i can't see what was that inference
<Onemorenickname_>
hence the need to get the types of everything inferred so far
<Onemorenickname_>
(i've seen someone do that, maybe with "-i" option or something likethat)
<Onemorenickname_>
(but not with ocamlbuild)
<companion_cube>
merlin can work with ocamlbuild, it's an editor plugin that embeds the typechecker
<companion_cube>
and you have a shortcut to ask for the type of any expression
<Onemorenickname_>
i will check the doc, thank you companion_cube :)
<Onemorenickname_>
so far, the .merlin file has been easy to make, and save highlights me the errors
<Onemorenickname_>
perfect
<Onemorenickname_>
companion_cube, and i can get the types, thank you !
<companion_cube>
ah, nice!
<companion_cube>
it's a very useful tool
<companion_cube>
(with a minimum amount of setup you also get jump-to-def)
alienbot has joined #ocaml
<Onemorenickname_>
i'll check that
sz0 has joined #ocaml
<Onemorenickname_>
easy&quick setup, useful features, what to ask ? :D
alienbot has quit [Read error: Connection reset by peer]
FreeBirdLjj has joined #ocaml
<companion_cube>
yeah, it's amazing
<Onemorenickname_>
and i solved the error
<Onemorenickname_>
actually, there was a bigger error /just after/ the small one, and given the compilation stops after the first error detected, i could not see it
<Onemorenickname_>
haha
FreeBirdLjj has quit [Remote host closed the connection]
<reynir>
Onemorenickname_: Did someone take Onemorenickname? :D
FreeBirdLjj has joined #ocaml
<companion_cube>
Twomorenickname
cpdean has joined #ocaml
cpdean has quit [Client Quit]
omarramo has joined #ocaml
zpe has quit [Remote host closed the connection]
zpe has joined #ocaml
freusque has joined #ocaml
al-damiri has joined #ocaml
zpe has quit [Ping timeout: 248 seconds]
<Onemorenickname_>
reynir, ha ha
Onemorenickname_ is now known as Onemorenickname
alienbot has joined #ocaml
omarramo has quit [Ping timeout: 240 seconds]
alienbot has quit [Remote host closed the connection]
infinity0 has joined #ocaml
FreeBirdLjj has quit [Remote host closed the connection]
Onemorenickname_ has joined #ocaml
Mercuria1Alchemi has quit [Ping timeout: 245 seconds]
omarramo has joined #ocaml
Onemorenickname has quit [Ping timeout: 252 seconds]
gjaldon has quit []
omarramo has quit [Read error: Connection reset by peer]
omar__ has joined #ocaml
xorpse has quit [Ping timeout: 240 seconds]
troydm has quit [Ping timeout: 240 seconds]
larhat has quit [Quit: Leaving.]
asmanur has quit [Ping timeout: 256 seconds]
omar__ has quit [Ping timeout: 240 seconds]
omar__ has joined #ocaml
rgrinberg has quit [Remote host closed the connection]
omar__ has quit [Quit: Konversation terminated!]
omarramo has joined #ocaml
yomimono has joined #ocaml
asmanur_ has joined #ocaml
Onemorenickname_ has quit [Read error: Connection reset by peer]
omar__ has joined #ocaml
omarramo has quit [Ping timeout: 240 seconds]
dhil has quit [Ping timeout: 240 seconds]
omar__ has quit [Ping timeout: 255 seconds]
fraggle_ has quit [Ping timeout: 255 seconds]
ryanartecona has joined #ocaml
dhil has joined #ocaml
vicfred has quit [Remote host closed the connection]
jnavila has quit [Read error: Connection reset by peer]
demonimin has quit [Remote host closed the connection]
demonimin has joined #ocaml
slash^ has joined #ocaml
govg has joined #ocaml
ryanartecona has quit [Quit: ryanartecona]
mfp has joined #ocaml
moei has quit [Quit: Leaving...]
th5 has joined #ocaml
two_wheels has quit [Read error: Connection reset by peer]
zpe has joined #ocaml
kakadu has quit [Quit: Konversation terminated!]
ryanartecona has joined #ocaml
nicoo has quit [Remote host closed the connection]
nicoo has joined #ocaml
ygrek has joined #ocaml
demonimin has quit [Remote host closed the connection]
zpe has quit [Remote host closed the connection]
demonimin has joined #ocaml
tane has joined #ocaml
unbalanced has joined #ocaml
sepp2k has quit [Quit: Leaving.]
dhil has quit [Ping timeout: 256 seconds]
unbalanced has quit [Ping timeout: 240 seconds]
milodavis has quit [Quit: WeeChat 1.0.1]
apache3 has quit [Remote host closed the connection]
apache3_ has joined #ocaml
fraggle-boate has quit [Remote host closed the connection]
orbifx has joined #ocaml
octachron has joined #ocaml
kakadu has joined #ocaml
fre has joined #ocaml
_andre has quit [Quit: leaving]
smondet has joined #ocaml
KV has joined #ocaml
KV has quit [Client Quit]
KV has joined #ocaml
rcabaco has quit [Remote host closed the connection]
rcabaco has joined #ocaml
jao has joined #ocaml
rcabaco has quit [Ping timeout: 240 seconds]
moei has joined #ocaml
rcabaco has joined #ocaml
Xadnem has joined #ocaml
Xadnem has quit [Client Quit]
rcabaco has quit [Ping timeout: 256 seconds]
orbifx has quit [Ping timeout: 240 seconds]
octachron has quit [Quit: Leaving]
ltadeu has quit [Ping timeout: 240 seconds]
rcabaco has joined #ocaml
napping has joined #ocaml
zpe has joined #ocaml
slash^ has quit [Read error: Connection reset by peer]
_zim_ has quit [Ping timeout: 272 seconds]
<napping>
trying to install omake with opam is failing - would a non-opam install under /usr/local possibly break it?
Algebr`` has joined #ocaml
celsosouza has joined #ocaml
Algebr`` is now known as Algebr
madroach has joined #ocaml
pierpa has joined #ocaml
MercurialAlchemi has quit [Ping timeout: 255 seconds]
Denommus` has quit [Ping timeout: 255 seconds]
<napping>
The fatal error is like *** omake error: File doc/OMakefile: line 227, characters 5-18 directory does not exist: $HOME/.opam/4.03.0/build/omake.0.10.1/doc/txt