:- module hello_world. :- interface. :- import_module io. :- pred main(io__state, io__state). :- mode main(di, uo) is det. :- implementation. main --> io__write_string("Hello, World!\n").
:- module hello_world.
:- interface.
:- import_module io.
:- pred main(io__state, io__state). :- mode main(di, uo) is det.
:- implementation.
main --> io__write_string("Hello, World!\n").