mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-30 16:54:41 +00:00
9 lines
104 B
Plaintext
9 lines
104 B
Plaintext
:- module tiny.
|
|
:- interface.
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
main --> [].
|
|
|