Hello world/Newline omission: Difference between revisions

Add trivial Limbo example.
No edit summary
(Add trivial Limbo example.)
Line 395:
<lang lb>print "Goodbye, World!";
</lang>
 
=={{header|Limbo}}==
<lang limbo>
implement HelloWorld;
 
include "sys.m"; sys: Sys;
include "draw.m";
 
HelloWorld: module {
init: fn(nil: ref Draw->Context, nil: list of string);
};
 
init(nil: ref Draw->Context, nil: list of string)
{
sys = load Sys Sys->PATH;
sys->print("Hello, World!");
}
</lang>
 
 
=={{header|Logtalk}}==
32

edits