mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 03:45:06 -05:00
7 lines
143 B
Plaintext
7 lines
143 B
Plaintext
|
const
|
||
|
TestStr = 'Hai, seems like you got includes working!';
|
||
|
|
||
|
function Multiply(a,b : integer) : integer;
|
||
|
begin;
|
||
|
result := a*b;
|
||
|
end;
|