2019-09-22 01:59:48 +04:00
|
|
|
// Test functions with several parameters in PascaLIGO
|
|
|
|
|
2019-05-13 00:56:22 +04:00
|
|
|
function ab(const a : int; const b : int) : int is
|
|
|
|
begin skip end with (a + b)
|
|
|
|
|
|
|
|
function abcd(const a : int; const b : int; const c : int; const d : int) : int is
|
|
|
|
begin skip end with (a + b + c + d + 2)
|
|
|
|
|
|
|
|
function abcde(const a : int; const b : int; const c : int; const d : int; const e : int) : int is
|
|
|
|
begin skip end with (c + e + 3)
|