Judocus has quit [Quit: *vanishes into the mythical real world*]
charles__ has joined #ocaml
VermillionAzure has joined #ocaml
<charles__>
Hello! I'm experimenting with the "Toploop" module -- am I right that Toploop.eval_path takes a path and returns and Obj.t of its module? My trouble is that I'm calling this with Pident "Pervasives" and getting "Reference to undefined global `Pervasives'". I'm hoping to access the modules in the current proccess - is that possible?
<Leonidas>
since 1.0+beta17, good, I'll adjust the depedency
kakadu has quit [Ping timeout: 240 seconds]
kakadu_ has joined #ocaml
hdon has joined #ocaml
hdon has quit [Ping timeout: 256 seconds]
jao has joined #ocaml
jao has quit [Ping timeout: 240 seconds]
barcabuona has joined #ocaml
jnavila has joined #ocaml
pmetzger has joined #ocaml
Haudegen has joined #ocaml
silver has joined #ocaml
barcabuona has quit [Ping timeout: 240 seconds]
kakadu_ has quit [Read error: Connection reset by peer]
kakadu_ has joined #ocaml
barcabuona has joined #ocaml
flx_ is now known as flux
<flux>
nice, apparently some channels ban nicks with _
<flux>
due to unknown circumstances I ended on such a channel with an automatically generated secondary nick, but it was not possible the change it anymore due to the ban :)
<pierpa>
Why are they against the _?
snhmib has joined #ocaml
pmetzger has quit []
barcabuona has quit [Ping timeout: 246 seconds]
leah2 has quit [Ping timeout: 246 seconds]
leah2 has joined #ocaml
iitalics has joined #ocaml
bartholin has quit [Ping timeout: 240 seconds]
TC01 has quit [Remote host closed the connection]
<flux>
purity of the nick?-)
sh0t has quit [Remote host closed the connection]
sh0t has joined #ocaml
<pierpa>
hmmm
spew has quit [Ping timeout: 264 seconds]
FreeBirdLjj has quit [Remote host closed the connection]
snhmib has quit [Ping timeout: 276 seconds]
spew has joined #ocaml
barcabuona has joined #ocaml
iitalics has quit [Quit: WeeChat 2.1]
jnavila has quit [Ping timeout: 240 seconds]
muelleme_ has joined #ocaml
sven[m] is now known as ansiwen
zolk3ri has quit [Ping timeout: 264 seconds]
muelleme_ has quit [Ping timeout: 256 seconds]
spew has quit [Ping timeout: 264 seconds]
cbot has joined #ocaml
barcabuona has quit [Quit: WeeChat 2.1]
zolk3ri has joined #ocaml
zolk3ri has quit [Ping timeout: 260 seconds]
zolk3ri has joined #ocaml
orbifx has joined #ocaml
<reynir>
Below the latest message in my client there's a status bar with a similar color as my font. Sometimes it's difficult to tell if there's an underscore or not. Could be for similar reasons..
gtrak has joined #ocaml
<reynir>
(oh, just noticed the timestamp, sorry)
<pierpa>
Ah! Could be.
zolk3ri has quit [Remote host closed the connection]
<dougmencken>
my problem is that I get just “ public static void main() ” and thus unrunnable class instead of “ ... main(String[] args) ”
<dougmencken>
and in the beginning this code seems okay “ write w "public static void main(String[] args)"; ”
<companion_cube>
well maybe your hashtable doesn't contain what you expect it contains?
<companion_cube>
also, it's usually more idiomatic to use `begin match … end;` instead of `(match … );`
<companion_cube>
(in my mind at least)
<dougmencken>
companion_cube: well ocaml for me is new language, and what confuses me is that first does “ write w "public static void main(String[] args)"; ”
<companion_cube>
well it writes the string on `w`, which is probably an `out_channel`
<companion_cube>
although normally it should be `output_string w "some string"`
<octachron>
dougmencken, it seems quite probable that this is not the part of the code which is writing "main()"
<dougmencken>
so it looks like writing of ...main(String[] args) is guaranteed?
<octachron>
if the implementation of write is not … absurd, I would say yes
<dougmencken>
what’s then “ | None -> write w "main();"); ” part?