Files
mercury/tests/grade_subdirs/hello.m
Julien Fischer 9875bf32c0 Fix a test failure.
tests/grade_subdirs/hello.m:
   Fix error accidently introduced in commit cb5e4a.
2021-11-13 17:21:15 +11:00

15 lines
356 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module hello.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
main(!IO) :-
io.write_string("Hello, world\n", !IO).