Раздел 1.9: Hello World в Oxygene Перевод
Zeba
25 Октября
Поделиться в соцсетях
Пожаловаться модератору
namespace HelloWorld;
interface
type
App = class
public
class method Main(args: array of String);
end;
implementation
class method App.Main(args: array of String);
begin
Console.WriteLine('Hello World');
end;
end.
19