Yurik changed the topic of #ocaml to: http://icfpcontest.cse.ogi.edu/ -- OCaml wins | http://www.ocaml.org/ | http://caml.inria.fr/oreilly-book/ | http://icfp2002.cs.brown.edu/ | SWIG now supports OCaml| Early releases of OCamlBDB and OCamlGettext are available
systems has joined #ocaml
<systems> hello
<Riastradh> Hi.
stepcut has quit [Read error: 110 (Connection timed out)]
mattam has quit ["zzzZZzzzz"]
Kinners has joined #ocaml
systems has left #ocaml []
polin8 has quit [Read error: 104 (Connection reset by peer)]
polin8 has joined #ocaml
docelic is now known as docelic|sleepo
docelic|sleepo is now known as docelic
docelic is now known as docelic|sleepo
rox is now known as rox|ausgeschalte
lament has joined #ocaml
<whee> anyone ever written a ray tracer in ocaml?
<whee> (yes, I know the icfp contest exists, but those are well developed and confusing to me D:)
<Kinners> I don't know if it was for the icfp contest
<whee> hrrm
<whee> I need to find one that supports basically nothing :)
<Kinners> why's that, for learning purposes?
<whee> yeah
<whee> I just need to know where to start
<whee> ideally I find something (any language, really) that just renders spheres with no shading or shadows or anything
<Kinners> I think I know of a good page...
<Kinners> hmm, not quite but it does have some info - http://freespace.virgin.net/hugo.elias/graphics/x_main.htm#5
<whee> hrm
<whee> jackpot. a single file raytracer in c++
<whee> either that's good or bad
<Kinners> http://algol.prosalg.no/~vidar/gimp/sphere/ , spheredesigner plugin for gimp
<whee> I'm going to just jump into this and hope it works out, thanks though
polin8 has quit ["Lost terminal"]
<whee> guess it's time to learn the OO part of ocaml too :\
palomer has quit [Remote closed the connection]
polin8 has joined #ocaml
Kinners has left #ocaml []
mattam has joined #ocaml
TachYon has joined #ocaml
TachYon has quit [Client Quit]
lament has quit ["Did you know that God's name is ERIS, and that He is a girl?"]
ForgotMyPW has joined #ocaml
polin8 has quit [Read error: 110 (Connection timed out)]
ForgotMyPW has left #ocaml []
polin8 has joined #ocaml
docelic|sleepo is now known as docelic|away
mellum has quit [Read error: 110 (Connection timed out)]
mellum has joined #ocaml
xtrm has joined #ocaml
rox|ausgeschalte is now known as rox
docelic|away is now known as docelic
docelic has quit ["brb"]
docelic has joined #ocaml
docelic is now known as docelic|away
TachYon26 has joined #ocaml
TachYon26 has quit ["bez ki³y nie ma zaliczenia (z prawd studentek AM)"]
docelic|away is now known as docelic
Smerdyakov has joined #ocaml
Smerdyakov has quit []
Smerdyakov has joined #ocaml
Smerdyakov has quit []
mrvn_ has joined #ocaml
mrvn has quit [Read error: 60 (Operation timed out)]
mrvn_ is now known as mrvn
<mellum> Still not a good idea to call variables "new"
systems has joined #ocaml
<mrvn> just as bad as end, do or begin
<systems> what
<mrvn> 21:29 < mellum> Still not a good idea to call variables "new"
<systems> new is a keyword right!!!
<systems> we are allowed to use keywords ??
<systems> as variable names
<mrvn> no
TachYon has joined #ocaml
__DL__ has joined #ocaml
systems has quit [Read error: 60 (Operation timed out)]
mrvn_ has joined #ocaml
mrvn has quit [Read error: 110 (Connection timed out)]
mattam_ has joined #ocaml
skylan has quit [Read error: 104 (Connection reset by peer)]
skylan has joined #ocaml
mattam has quit [Read error: 60 (Operation timed out)]
debug has joined #ocaml
skylan has quit [Read error: 104 (Connection reset by peer)]
skylan has joined #ocaml
TachYon has quit [Remote closed the connection]
Smerdyakov has joined #ocaml
thedark has joined #ocaml
<thedark> i need to create a function that is big_int -> int -> big_int ... i dont know hot to tell caml the first parameter of the function vill be a big_int .. anh hints ?
<Riastradh> let f (x : big_int) ... = ... (* if I remember correctly *)
<thedark> ok:) thanx i'm trying it:)
<Riastradh> Or in the interface, say: val f : big_ing -> int -> big_int (* or something like that *)
<thedark> oh yes:) interface :)