Files
compiler-explorer/examples/pascal/default.pas
2018-03-28 22:23:06 +02:00

17 lines
221 B
ObjectPascal

unit output;
interface
function Square(const num: Integer): Integer;
implementation
// Type your code here, or load an example.
function Square(const num: Integer): Integer;
begin
Square := num * num;
end;
end.