Files
mercury/tests/hard_coded/bug441.m
Zoltan Somogyi 7ac7ad5a42 Fix indentation.
2022-04-11 13:03:44 +10:00

22 lines
463 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module bug441.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- import_module bug441_sub.
main(!IO) :-
do_fmain(hello, !IO).
:- func hello : fmain `with_inst` fmain.
hello(FIO) = print_fio_line("Hello World!", FIO).