Mercury 10.04

Version of implementation Melbourne Mercury Compiler of programming language Mercury

A version of Mercury compiler, released on July 19th, 2010.

Examples:

Hello, World! - Mercury (429):

 :- module hello.
 :- interface.
 :- import_module io.
 :- pred main(io::di, io::uo) is det.

 :- implementation.
 main(!IO) :-
 	io.write_string("Hello, World!\n", !IO).