18 lines
207 B
Text
18 lines
207 B
Text
namespace HelloWorld;
|
|
|
|
interface
|
|
|
|
type
|
|
HelloClass = class
|
|
public
|
|
class method Main;
|
|
end;
|
|
|
|
implementation
|
|
|
|
class method HelloClass.Main;
|
|
begin
|
|
System.Console.WriteLine('Hello world!');
|
|
end;
|
|
|
|
end.
|