Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!usc!sdd.hp.com!spool2.mu.edu!uunet!munnari.oz.au!csc.anu.edu.au!csis!molr From: molr@caroli.csis.dit.csiro.au (Rory Molinari) Newsgroups: comp.sys.amiga Subject: Re: Is there an ML for the amiga? Message-ID: <1991Jan8.222007.1476@csis.dit.csiro.au> Date: 8 Jan 91 22:20:07 GMT References: <41023@nigel.ee.udel.edu> Sender: molr@csis.dit.csiro.au (Rory Molinari) Reply-To: molr@caroli.csis.dit.csiro.au Organization: csis.dit.csiro.au Lines: 26 From article <41023@nigel.ee.udel.edu>, by fhwri%CONNCOLL.BITNET@cunyvm.cuny.edu: > The ML for the Amiga is the standard 68000 assembly code. A good place to > start is the COMPUTE! Beginner's Guide to ML Programming for the Amiga book. > You'll need a good assembler and the include files, or a copy of the ROM > Kernal Manual. There are good PD and commercial assemblers available. > > I (ahem) ASSUME that you mean "machine language" by "ML." > > --Rick Wrigley > fhwri@conncoll.bitnet Sorry, I should have made myself a bit clearer. By 'ML' I mean the functional programming language, developed (I think) at the University of Edinburgh. Code in this language might look like: fun factorial (0) = 1 | factorial (1) = 1 | factorial (n) = n * factorial(n - 1); This functions would return the factorial of n. Sorry if my first posting confused anybody else. Rory Molinari molr@csis.dit.csiro.au