* [Caml-list] lablgtk tutorial @ 2002-08-13 15:07 Kontra, Gergely 2002-08-13 16:16 ` Remi VANICAT 0 siblings, 1 reply; 5+ messages in thread From: Kontra, Gergely @ 2002-08-13 15:07 UTC (permalink / raw) To: caml-list Hi! Is there any tutorials dealing with just gtk, and minimal other ocaml things? I know a bit about functional programming (SML), and a bit of gtk, but I don't know about the style of using gtk under this functional language. Gergo +-[Kontra, Gergely @ Budapest University of Technology and Economics]-+ | Email: kgergely@mcl.hu, kgergely@turul.eet.bme.hu | | URL: turul.eet.bme.hu/~kgergely Mobile: (+36 20) 356 9656 | +-------"Olyan langesz vagyok, hogy poroltoval kellene jarnom!"-------+ . Magyar php mirror es magyar php dokumentacio: http://hu.php.net ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Caml-list] lablgtk tutorial 2002-08-13 15:07 [Caml-list] lablgtk tutorial Kontra, Gergely @ 2002-08-13 16:16 ` Remi VANICAT 2002-08-13 16:24 ` [Caml-list] Example of camlp4: One Day Compilers (slide show) Mattias Waldau 0 siblings, 1 reply; 5+ messages in thread From: Remi VANICAT @ 2002-08-13 16:16 UTC (permalink / raw) To: caml-list "Kontra, Gergely" <kgergely@mlabdial.hit.bme.hu> writes: > Hi! > > Is there any tutorials dealing with just gtk, and minimal other ocaml > things? I know a bit about functional programming (SML), and a bit of > gtk, but I don't know about the style of using gtk under this functional > language. you could find at the following address some code that are a translation of the C code from the gtk tutorial. http://dept-info.labri.u-bordeaux.fr/~vanicat/Enseignement/MMI-MPA/tutorial_gtk.ml It's in French, and you have only the code, but it better than nothing -- Rémi Vanicat vanicat@labri.u-bordeaux.fr http://dept-info.labri.u-bordeaux.fr/~vanicat ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Caml-list] Example of camlp4: One Day Compilers (slide show) 2002-08-13 16:16 ` Remi VANICAT @ 2002-08-13 16:24 ` Mattias Waldau 2002-08-13 18:51 ` Paul Steckler 0 siblings, 1 reply; 5+ messages in thread From: Mattias Waldau @ 2002-08-13 16:24 UTC (permalink / raw) To: caml-list One Day Compilers (Graydon Hoare) (via Ken Rawlings) A tutorial on implementing DSLs, using O'caml, syntax extension, and a C backend. The approach is based on using Camlp4 for embedding the DSL in O'caml, and producing C source code using the author's Cquot package (for C code quasiquoting). http://www.venge.net/graydon/talks/mkc/html/index.html ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [Caml-list] Example of camlp4: One Day Compilers (slide show) 2002-08-13 16:24 ` [Caml-list] Example of camlp4: One Day Compilers (slide show) Mattias Waldau @ 2002-08-13 18:51 ` Paul Steckler 2002-08-13 19:21 ` Mattias Waldau 0 siblings, 1 reply; 5+ messages in thread From: Paul Steckler @ 2002-08-13 18:51 UTC (permalink / raw) To: 'Mattias Waldau', caml-list > http://www.venge.net/graydon/talks/mkc/html/index.html My DNS can't find this Web server. ? -- Paul ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [Caml-list] Example of camlp4: One Day Compilers (slide show) 2002-08-13 18:51 ` Paul Steckler @ 2002-08-13 19:21 ` Mattias Waldau 0 siblings, 0 replies; 5+ messages in thread From: Mattias Waldau @ 2002-08-13 19:21 UTC (permalink / raw) To: steck, caml-list 216.138.209.205 (the link is from http://lambda.weblogs.com/, a really nice place.) > -----Original Message----- > From: Paul Steckler [mailto:steck@ccs.neu.edu] > Sent: Tuesday, August 13, 2002 8:52 PM > To: 'Mattias Waldau'; caml-list@inria.fr > Subject: RE: [Caml-list] Example of camlp4: One Day Compilers > (slide show) > > > > http://www.venge.net/graydon/talks/mkc/html/index.html > > My DNS can't find this Web server. ? > > -- Paul > > ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-08-13 19:22 UTC | newest] Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2002-08-13 15:07 [Caml-list] lablgtk tutorial Kontra, Gergely 2002-08-13 16:16 ` Remi VANICAT 2002-08-13 16:24 ` [Caml-list] Example of camlp4: One Day Compilers (slide show) Mattias Waldau 2002-08-13 18:51 ` Paul Steckler 2002-08-13 19:21 ` Mattias Waldau
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox