Skip to content

Instantly share code, notes, and snippets.

@arfon
Created May 23, 2014 15:45
Show Gist options
  • Save arfon/299fb612d6c9e4dde99f to your computer and use it in GitHub Desktop.
Save arfon/299fb612d6c9e4dde99f to your computer and use it in GitHub Desktop.
% "Hello World" in Mercury.
% This source file is hereby placed in the public domain. -fjh (the author).
:- module hello.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
main(!IO) :-
io.write_string("Hello, world\n", !IO).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment