Mercury_programming_language Mercury_programming_language

Mercury programming language - Definition and Overview

Mercury is a functional/logical programming language based on Prolog, but designed to be more useful for real-world programming problems.

Mercury is compiled rather than interpreted as is traditional for logic languages. It has a sophisticated, strict type and mode system. Its authors claim that these features and the abstract nature of logic programming make it easier to write reliable programs rapidly. Mercury's module system also makes it easy to divide logic programs up into self-contained modules, a problem for logic programs in the past.

A sample piece of programming in Mercury looks like

 :- module hello_world.

 :- interface.

 :- import_module io.

 :- pred main(io__state, io__state).
 :- mode main(di, uo) is det.

 :- implementation.

 main -->
 	io__write_string("Hello, World!\n").

(by Ralph Becket (http://www.cs.mu.oz.au/research/mercury/tutorial/hello-world.html) at the University of Melbourne):

Mercury is developed at the University Of Melbourne Computer Science department under the supervision of Dr. Zoltan Somogyi.

See also

External links


Example Usage of programming

natanielewsky: Age of Mythology - The Titans http://bit.ly/5gEgCv #programming #php
rickmacedo: "programming is getting so abstract that developers will soon have to write programs through interpretative dance." (Jeffrey Snover)
TSAinc: Warehouse, project and route management programming. We program, you profit!
Copyright 2009 WordIQ.com - Privacy Policy  :: Terms of Use  :: Contact Us  :: About Us
This article is licensed under the GNU Free Documentation License. It uses material from the this Wikipedia article.