mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
17 lines
219 B
ObjectPascal
17 lines
219 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.
|