RosettaCodeData/Task/Variables/Mercury/variables-2.mercury

5 lines
145 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
:- pred greet(string::in, io::di, io::uo) is det.
greet(Who, !IO) :-
io.write_string("Hello", !IO),
io.format(", %s!\n", [s(Who)], !IO).