caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* OCaml & .NET
@ 2006-02-04 16:08 William W Smith
  2006-02-04 16:32 ` [Caml-list] " skaller
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: William W Smith @ 2006-02-04 16:08 UTC (permalink / raw)
  To: caml-list

Has anyone tried porting OCaml to managed code as a
Microsoft .NET family language?  

A related question is whether there any library sets
to access the windows API or MFC directly?

Bill


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] OCaml & .NET
  2006-02-04 16:08 OCaml & .NET William W Smith
@ 2006-02-04 16:32 ` skaller
  2006-02-04 17:06 ` Jean-Marc EBER
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: skaller @ 2006-02-04 16:32 UTC (permalink / raw)
  To: William W Smith; +Cc: caml-list

On Sat, 2006-02-04 at 08:08 -0800, William W Smith wrote:
> Has anyone tried porting OCaml to managed code as a
> Microsoft .NET family language?  

Microsoft Research has, its called F#.

http://research.microsoft.com/projects/ilx/fsharp.aspx

-- 
John Skaller <skaller at users dot sf dot net>
Felix, successor to C++: http://felix.sf.net


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] OCaml & .NET
  2006-02-04 16:08 OCaml & .NET William W Smith
  2006-02-04 16:32 ` [Caml-list] " skaller
@ 2006-02-04 17:06 ` Jean-Marc EBER
  2006-02-04 17:19 ` Brian Hurt
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Jean-Marc EBER @ 2006-02-04 17:06 UTC (permalink / raw)
  To: William W Smith; +Cc: caml-list

You should also have a look at

http://www.pps.jussieu.fr/~montela/ocamil/

even if I don't know precisely the current state of this project.

Jean-Marc


William W Smith wrote:
> Has anyone tried porting OCaml to managed code as a
> Microsoft .NET family language?  
> 
> A related question is whether there any library sets
> to access the windows API or MFC directly?
> 
> Bill
> 
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
> 
> 



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] OCaml & .NET
  2006-02-04 16:08 OCaml & .NET William W Smith
  2006-02-04 16:32 ` [Caml-list] " skaller
  2006-02-04 17:06 ` Jean-Marc EBER
@ 2006-02-04 17:19 ` Brian Hurt
  2006-02-05  7:52 ` Nathaniel Gray
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Brian Hurt @ 2006-02-04 17:19 UTC (permalink / raw)
  To: William W Smith; +Cc: caml-list



On Sat, 4 Feb 2006, William W Smith wrote:

> Has anyone tried porting OCaml to managed code as a
> Microsoft .NET family language?

Take a look at F#:
http://blogs.msdn.com/dsyme/

It's not precisely Ocaml.NET, but it's pretty dang close.

Brian


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] OCaml & .NET
  2006-02-04 16:08 OCaml & .NET William W Smith
                   ` (2 preceding siblings ...)
  2006-02-04 17:19 ` Brian Hurt
@ 2006-02-05  7:52 ` Nathaniel Gray
  2006-02-06 18:28 ` Harry Chomsky
  2006-02-06 19:19 ` Robert Roessler
  5 siblings, 0 replies; 7+ messages in thread
From: Nathaniel Gray @ 2006-02-05  7:52 UTC (permalink / raw)
  To: William W Smith; +Cc: caml-list

You might be interested in Nemerle.  It's not OCaml per se, but it's
an interesting derivative.

www.nemerle.org

Cheers,
-n8

On 2/4/06, William W Smith <sesquized@sbcglobal.net> wrote:
> Has anyone tried porting OCaml to managed code as a
> Microsoft .NET family language?
>
> A related question is whether there any library sets
> to access the windows API or MFC directly?
>
> Bill
>
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
>


--
>>>-- Nathaniel Gray -- Caltech Computer Science ------>
>>>-- Mojave Project -- http://mojave.cs.caltech.edu -->


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] OCaml & .NET
  2006-02-04 16:08 OCaml & .NET William W Smith
                   ` (3 preceding siblings ...)
  2006-02-05  7:52 ` Nathaniel Gray
@ 2006-02-06 18:28 ` Harry Chomsky
  2006-02-06 19:19 ` Robert Roessler
  5 siblings, 0 replies; 7+ messages in thread
From: Harry Chomsky @ 2006-02-06 18:28 UTC (permalink / raw)
  To: William W Smith, caml-list

William W Smith wrote:
> A related question is whether there any library sets
> to access the windows API or MFC directly?

A couple of years ago I took a stab at wrapping large parts of the Win32 API 
into an OCaml library.  You can download the library here:

http://www.speakeasy.org/~hchomsky/ocaml-win32.html


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] OCaml & .NET
  2006-02-04 16:08 OCaml & .NET William W Smith
                   ` (4 preceding siblings ...)
  2006-02-06 18:28 ` Harry Chomsky
@ 2006-02-06 19:19 ` Robert Roessler
  5 siblings, 0 replies; 7+ messages in thread
From: Robert Roessler @ 2006-02-06 19:19 UTC (permalink / raw)
  To: Caml-list

Sigh - one more email that went to the person insteat of the list...

William W Smith wrote:
> Has anyone tried porting OCaml to managed code as a
> Microsoft .NET family language?  
> 
> A related question is whether there any library sets
> to access the windows API or MFC directly?

Well, everyone else has already mentioned F# (but do note that it is
not full OCaml)...

Regarding your other question, there is also a somewhat/largely
complete (depending on your POV/needs) library for Win32 API access:

http://sourceforge.net/projects/ocaml-win32

Robert Roessler
roessler@rftp.com
http://www.rftp.com


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-02-06 19:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-04 16:08 OCaml & .NET William W Smith
2006-02-04 16:32 ` [Caml-list] " skaller
2006-02-04 17:06 ` Jean-Marc EBER
2006-02-04 17:19 ` Brian Hurt
2006-02-05  7:52 ` Nathaniel Gray
2006-02-06 18:28 ` Harry Chomsky
2006-02-06 19:19 ` Robert Roessler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).