18 lines
210 B
Text
18 lines
210 B
Text
namespace HelloWorldNET;
|
|
|
|
interface
|
|
|
|
type
|
|
App = class
|
|
public
|
|
class method Main;
|
|
end;
|
|
|
|
implementation
|
|
|
|
class method App.Main;
|
|
begin
|
|
System.Windows.MessageBox.Show("Farewell cruel world");
|
|
end;
|
|
|
|
end.
|