Geometry.Net - the online learning center
Home  - Basic_M - Ml Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 2     21-40 of 119    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Ml Programming:     more books (49)
  1. Elements of Ml Programming by Jeffrey D. Ullman, 1994
  2. Categorical ML: Category-theoretic modular programming (Technical report series. University of Manchester. Dept. of Computer Science) by Esther Dennis-Jones, 1989
  3. Applicative High Order Programming: Standard Ml in Practice (Chapman and Hall Computing Series) by S. Sokolowski, 1991-02
  4. A Practical Course in Functional Programming Using ML by Richard Bosworth, 1995-03
  5. Elements of ML Programming, ML97 Edition (2nd Edition) by Jeffrey D. Ullman, 1997
  6. Practical Course in Functional Programming Using Standard Ml by Richard Bosworth, 1994-11-01
  7. Elements ML Programming by ULLMAN, 1994-01-02
  8. Functional Programming Using Standard ML by Ake Wikstrom, 1987
  9. Programming With Standard Ml by Colin; Clack, Chris; Poon, Ellen Myers, 1993
  10. Adaptive functional programming ([Research paper] / Carnegie Mellon University. School of Computer Science) by Umut A Acar, 2002
  11. Modules and persistence in standard ML (LFCS report series. University of Edinburgh. Dept. of Computer Science. Laboratory for Foundations of Computer Science) by Robert Harper, 1986
  12. Funktionale Programmierung: in OPAL, ML, HASKELL und GOFER (Springer-Lehrbuch) by Peter Pepper, 2002-09-12
  13. Abstract Data Types in Standard ML (Wiley Professional Computing) by Rachel Harrison, 1993-06
  14. The MDL programming language primer (MIT/LCS/ML-81-1) by Michael Dornbrook, 1981

21. SML '97
The following new editions of ml programming textbooks describe SML 97.Paulson s ML for the Working Programmer (2nd edition) Ullman s Elements of ML
http://www.smlnj.org/sml97.html
Standard ML '97
Standard ML was proposed in 1983, designed from '84-'88, and defined in Definition of Standard ML (Milner, Tofte, Harper, MIT Press, 1990) Standard ML '97 is a modest revision (and simplification) of the language, defined in The Definition of Standard ML (Revised) (Milner, Tofte, Harper, MacQueen, MIT Press, 1997) The name of the revised language remains "Standard ML", but we also refer to it as "Standard ML '97" or "SML '97" to distinguish it from the 1990 version, which can be referred to as "SML '90". At the same time, the new SML Basis Library is added to the specification of the language. The new basis library is intended to support a wide range of systems and applications programming: it specifies a broad collection of predefined modules that provide basic types, input/output facilities, and interfaces for interacting with the host operating system in a portable way. The highlights of the language changes in SML '97 are given below. For much more detail on the changes, and suggestions on how to convert SML '90 code to run under SML '97, see the SML '97 Conversion Guide The principal language changes in SML '97 are:
  • The elimination of imperative type variables . The role of imperative type variables in constraining polymorphism in the presence of effects is now played by the value restriction , which allows the type of a val binding to be generalized only when the right hand side is an expression in a restricted form called a value expression . A value expression is either a constant, a variable, a function expression (i.e. a lambda expression) or is built from these elements using products and constructions.

22. Introduction To The ML Programming Language
Standard ML is. A language developed by the programming languages researchcommunity (Robin Milner; Dave MacQueen; ) Is an extended functional
http://www.cs.jhu.edu/~scott/cw/lectures/sml-intro.html
Introduction to the ML programming language
Readings for this topic: Ullman chapters 1-6 but skipping 3.5, 3.6, chapter 4 on I/O, and section 5.2 on exceptions.
Background on Standard ML
Standard ML is
  • A language developed by the programming languages research community (Robin Milner; Dave MacQueen;...)
  • Is an "extended functional" language: has imperative features built on a functional core. ( pure functional = no assignment or other mutation operator in language)
  • Has some novel features: type inference, pattern matching, parametric polymorphism, functors (higher-order modules), ...
  • Particularly useful for metaprogramming (writing programs that manipulate programs, e.g. for compilers, interpreters etc).
    That was original purpose, "ML" = "Metalanguage".
  • Current compilers run too slowly for the language to be feasible for widespread use.
  • It is interactive and environment-based, like Lisp/Scheme/Smalltalk and unlike C/Pascal/C++/Java.
  • Uses implicit storage management like Java/Scheme/Smalltalk: no pointers or explicit memory allocation or de-allocation; garbage collection to automatically free up unwanted space.

23. Bookpool: Elements Of ML Programming (2nd Edition)
No previous knowledge of ML or functional programming is assumed. Makes MLprogramming interesting for the uninitiated. Demonstrates the power and ease
http://www.bookpool.com/sm/0137903871
help account NEW RELEASES BEST SELLERS ... LOG IN
Elements of ML Programming (2nd Edition) Jeffrey D. Ullman
Prentice Hall, Paperback, 97th edition, Published December 1997, 383 pages, ISBN 0137903871 List Price: $52.00
Our Price:
You Save: $6.05 (12% Off)
Availability: Out-Of-Stock Be the First to Write a Review and tell the world about this title! Books on similar topics, in best-seller order: Books from the same publisher, in best-seller order:
Written by a well-known computer science education and researcher. No previous knowledge of ML or functional programming is assumed.
This is the first book that offers BOTH a highly accessible, step-by-step introductory tutorial on ML programming and a complete reference to, and explanation of, advanced features. The author uses a wide variety of digestible program examples to bring the reader along at a reasonable pace. More sophisticated programs and advanced concept topics balance out a book that is usable in a number of courses and settings for either self-study or class discussion.
Features
Summarizes the entire ML 97 language including the latest SML/NJ features.

24. MLton
A wholeprogram optimizing compiler for the Standard ml programming language.
http://www.mlton.org/

25. ML Programming Language - Enpsychlopedia
ML is a generalpurpose functional programming language developed by Robin Milner It uses material from the Wikipedia article ml programming language .
http://psychcentral.com/psypsych/ML_programming_language
home resource directory disorders quizzes ... support forums Advertisement (
ML programming language
ML is a general-purpose functional programming language developed by Robin Milner and others in the late 1970s at Edinburgh University , whose syntax is inspired by ISWIM . Historically, ML stands for metalanguage as it was conceived to develop proof tactics in the LCF theorem prover (the language of which ML was the metalanguage is pplambda , a combination of the first-order predicate calculus and the simply-typed polymorphic lambda-calculus ). Among functional programming languages, it is most well-known for its use of the Hindley-Milner type inference algorithm, which can infer almost all types without annotation. ML is often referred to as an impure functional language, because it permits imperative programming , and therefore, side-effects , unlike purely functional programming languages such as Haskell Features of ML include call-by-value evaluation strategy, first class functions , automatic memory management through garbage collection , parametric polymorphism , static typing type inference algebraic data types pattern matching , and exception handling . This particular combination of concepts allows to produce one of the best compilers available http://shootout.alioth.debian.org/

26. Mac57 @ Hal.trinhall.cam.ac.uk - The ML Programming Library
mac57 @ hal.trinhall.cam.ac.uk The ml programming Library. I am interested inwriting functions in ML, some of which are available on this page.
http://www-stu.trinhall.cam.ac.uk/~mac57/display.php?title=The_ML_Programming_Li

27. Mac57 @ Hal.trinhall.cam.ac.uk - ML Adventure Game
mac57 @ hal.trinhall.cam.ac.uk The ml programming Library - ML Adventure Game As it is, I ve finished with the program. Enjoy!
http://www-stu.trinhall.cam.ac.uk/~mac57/display.php?title=ML_Adventure_Game&fil

28. SML Programming Language -- Facts, Info, And Encyclopedia Article
Categories Programming languages, ml programming language family, Imperativeprogramming languages, Functional languages The Sml programming language is
http://www.absoluteastronomy.com/encyclopedia/s/sm/sml_programming_language2.htm
SML programming language
[Categories: Programming languages, ML programming language family, Imperative programming languages, Functional languages]
The SML programming language is a modern descendant of the (A metric unit of volume equal to one thousandth of a liter) ML programming language used in the (Click link for more info and facts about LCF) LCF theorem-proving project. It is unique among widely used languages in that it has a formal specification, given as an (Click link for more info and facts about operational semantics) operational semantics in The Definition of Standard ML
Implementations
Some SML implementations include:
(Click link for more info and facts about MLton) MLton is a whole-program optimizing compiler that produces extremely fast code compared to other ML implementations. PrintLink("http://www.mlton.org", "(*)")
Moscow ML is a light-weight implementation, based on the (Click link for more info and facts about CAML Light) CAML Light runtime engine. It implements the full SML language, including SML Modules, and much of the SML Basis Library. PrintLink("http://www.dina.kvl.dk/~sestoft/mosml.html", "(*)")

29. ML Programming Language -- Facts, Info, And Encyclopedia Article
ml programming language. Categories Staticallytyped programming languages, ml programming language family, Imperative programming languages,
http://www.absoluteastronomy.com/encyclopedia/m/ml/ml_programming_language1.htm
ML programming language
[Categories: Statically-typed programming languages, Programming languages, ML programming language family, Imperative programming languages, Functional languages]
ML is a general-purpose (Click link for more info and facts about functional programming language) functional programming language developed by (Click link for more info and facts about Robin Milner) Robin Milner and others in the late 1970s at (Click link for more info and facts about Edinburgh University) Edinburgh University , whose syntax is inspired by (Click link for more info and facts about ISWIM) ISWIM . Historically, ML stands for metalanguage as it was conceived to develop proof tactics in the (Click link for more info and facts about LCF theorem prover) LCF theorem prover (the language of which ML was the metalanguage is pplambda , a combination of the (Click link for more info and facts about first-order predicate calculus) first-order predicate calculus and the simply-typed (Click link for more info and facts about polymorphic) polymorphic (Click link for more info and facts about lambda-calculus) lambda-calculus ). Among functional programming languages, it is most well-known for its use of the

30. Sample Program Of ML Programming Language - Q&A
sample program of ml programming language ML FAQ Monthly Posting. RatingNot yet rated, Rate this question. N/A, Worst, Weak, OK, Good, Great
http://www.faqs.org/qa/qa-13506.html
sample program of ML programming language
Internet RFC Index Usenet FAQ Index Other FAQs Documents Search
Search FAQs
Home Answered Questions
Question by joana Submitted on 2/17/2004 Related FAQ: Comp.Lang.ML FAQ [Monthly Posting] Rating: Not yet rated Rate this question: N/A Worst Weak OK Good Great sample program of ML programming language
Your answer will be published for anyone to see and rate. Your answer will not be displayed immediately. If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.
Your name or nickname: If you'd like to create a new account or access your existing account, put in your password here: Your answer: Check spelling FAQS.ORG reserves the right to edit your answer as to improve its clarity. By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer. FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

31. F
NET programming language? There are several niches for MLlike languages on the . To implement the core features of an ml programming language on the .
http://research.microsoft.com/projects/ilx/fsharp-faq.aspx
Microsoft.com Home Site Map
Search: All Research Online All Microsoft.com Microsoft Research Home About Microsoft Research Research Areas People ... Contact Us
F# FAQ
A clarification to some press reports about F#:
F# is a research project designed to exploit the potential of the .NET platform to further the long-standing goals of the functional programming community. The aim is to prove that it is feasible and useful to implement ML-like languages for use on the .NET Framework. There are no current plans to commercialize F#, and the source code for the F# compiler will be published as part of a future release. F# is public, on-going research, and Microsoft Research regularly and openly collaborates with universities on programming languages.
Where should I start? The best way to start is to download the implementation and to give the samples a try. Alternatively, the F# manual and quick tour will give you a feel for the language. The presentation Introducing F# gives an initial orientation to F#: what it is, what it is good for and the advantages it gives over other .NET languages and ML implementations. Where does F# fit in the spectrum of programming languages?

32. F
A .NET variant of ML with a core language similar to that of the OCaml programming language.
http://research.microsoft.com/projects/ilx/fsharp.aspx
Microsoft.com Home Site Map
Search: All Research Online All Microsoft.com Microsoft Research Home About Microsoft Research Research Areas People ... Contact Us
F# Combining the strong typing, scripting and productivity of ML with the efficiency, stability, libraries, cross-language working and tools of .NET. F# is a programming language that provides the much sought-after combination of type safety and scripting , with all the advantages of running on a high-quality, well-supported modern runtime system. F# gives you a combination of

33. Standard ML Programming For CPN Tools Users
The slide set is based on Ullman s book on Standard ml programming. JD Ullman.Elements of ml programming ML97 Edition. PrenticeHall International
http://www.daimi.au.dk/CPnets/slides/l_m_kristensen12.html
Standard ML Programming for CPN Tools Users
Abstract
This set of slides constitues a short course on funtional programming and Standard ML (SML) aimed at CPN Tools users. Standard ML is the language used writing for colour set definitions and inscriptions in CPN Tools. The subset of the SML language covered should suffice for most users of CPN Tools. The slide set is based on Ullman's book on Standard ML programming: J. D. Ullman. Elements of ML Programming ML97 Edition. Prentice-Hall International, Inc., 1998.
Format etc
The slide set contains 88 pages divided into two parts. Each of the two part takes approximately 3 hours to present. Part I covers the basic constructs of the Standard ML language. Part II covers a number of more advanced constructs of the SML language.
Developed and Maintained by
Lars Michael Kristensen, University of South Australia (lars.kristensen@unisa.edu.au) Last modified: Wed Feb 13 16:28:13 2002 CP-nets Webmaster

34. Citations Elements Of ML Programming - Jeffrey (ResearchIndex)
Ullman, Jeffrey D. (1994) Elements of ml programming, PrenticeHall, EnglewoodCliffs NJ.
http://citeseer.ist.psu.edu/context/55051/0

35. Elements Of ML Programming
Elements of ml programming. Purchase this Book Purchase this Book. Source.Pages 320. Year of Publication 1994. ISBN013-184854-2
http://portal.acm.org/citation.cfm?id=180894

36. Elements Of ML Programming (ML97 Ed.)
Elements of ml programming (ML97 ed.) Purchase this Book Purchase this Book D.3 PROGRAMMING LANGUAGES D.3.2 Language Classifications Nouns ML
http://portal.acm.org/citation.cfm?id=273107

37. Encyclopedia: ML Programming Language
Other descriptions of ml programming language. ML is a generalpurpose functionalprogramming language developed by Robin Milner and others in the late
http://www.nationmaster.com/encyclopedia/ML-programming-language

Supporter Benefits
Signup Login Sources ... Pies
Related Articles People who viewed "ML programming language" also viewed:
  • Programming language
  • Dynamic programming language
  • F Sharp programming language
  • Functional programming language ...
  • Haskell programming language What's new?
  • Our next offering Latest newsletter Student area Lesson plans
  • Recent Updates
  • Zone of alienation Zebu ZOOM Yukon general election, 2006 ...
  • More Recent Articles Top Graphs
  • Richest Most Murderous Most Taxed Most Populous ...
  • More Stats
    Encyclopedia: ML programming language
    Updated 101 days 12 hours 40 minutes ago. Other descriptions of ML programming language ML is a general-purpose functional programming language developed by Robin Milner and others in the late 1970s at Edinburgh University , whose syntax is inspired by ISWIM . Historically, ML stands for metalanguage as it was conceived to develop proof tactics in the LCF theorem prover (the language of which ML was the metalanguage is pplambda , a combination of the first-order predicate calculus and the simply-typed polymorphic lambda-calculus ). Among functional programming languages, it is most well-known for its use of the

    38. FREE Research On Ml Programming Language, Programming Language, Java Programming
    Free portal and resources on ml programming Language, Programming Language, JavaProgramming Language, C Programming Language, Apl Programming Language,
    http://www.cgsinfotechltd.com/info/Ml_Programming_Language.htm
    15300 + Clients Worldwide Call Toll Free : 1-866-249-4291 Welcome To CGS Infotech and CAN Network For Your Business Success Enhance Your Success Visit CAN Network
    And Learn More About CGS Infotech CGS Infotech along with its Certified Global Associates can provide wide range of services for business development, cost reduction and brand building for your success.
    CGS Infotech, Inc and CGS Global Associates Network (CAN) provides 350 different services to global clients since 1995. Consistent Quality. Unmatched excellence and affordable price. Proven track record and results. Get What You Want In 3 Easy Steps: Learn About CGS. Visit CGS Associates Website. Post Your Project. Receive Proposal. Review. Confirm the order. Get world-class solution at low-cost. And Learn More About CGS Infotech CGS Infotech, Inc. maintains a high-performance, reliable and responsible global delivery center in India for cutting-edge web and software services. We have also partnered with selected global service providers to deliver a range of everyday business services at lowest possible prices.

    39. ELEMENTS OF ML PROGRAMMING ML97 EDITION:(UNITED STATES EDITION) By JEFFREY ULLMA
    It assumes no previous knowledge of ML or functional programming. This secondedition has been heavily revised and updated using ML 97.
    http://www.pickabook.co.uk/book_details/index2.php?isbn=0137903871&type=classifi

    40. Nuprl Basics - The ML Programming Language Of Nuprl
    The ml programming language of Nuprl. Executable code for Tactics (as well as alot of editor code) is written in a dialect of ML described in the ML manual
    http://www.cs.cornell.edu/Info/People/sfa/Nuprl/NuprlPrimitives/Xwhatis_ml_doc.h
    NuprlPrimitives Sections NuprlLIB Search ... Doc IF YOU CAN SEE THIS go to http://www.cs.cornell.edu/Info/People/sfa/Nuprl/Shared/Xindentation_hack_doc.html
    The ML programming language of Nuprl
    Executable code for Tactics (as well as a lot of editor code) is written in a dialect of ML described in the ML manual (postscript). It is older than Standard ML. The term "ML" connotes the fact that it was a "meta-language" of computation for an earlier tactic prover at Edinburgh, namely LCF, as it is now for Nuprl. Some new primitive types, including "term" and "proof", were added. Feb 2001 sfa IF YOU CAN SEE THIS go to http://www.cs.cornell.edu/Info/People/sfa/Nuprl/Shared/Xindentation_hack_doc.html
    NuprlPrimitives
    Sections NuprlLIB Search ... Doc

    A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

    Page 2     21-40 of 119    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20

    free hit counter