mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
Estimated hours taken: 0.3 Branches: main, release samples/*.m: Fix some violations of good style in the sample programs.
15 lines
273 B
Mathematica
15 lines
273 B
Mathematica
% "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).
|