2019-09-21 14:59:48 -07:00
|
|
|
// Test a PascaLIGO function which uses other functions as subroutines
|
|
|
|
|
2020-02-10 19:27:58 +01:00
|
|
|
function inc (const i : int) : int is i+1
|
2019-05-12 20:56:22 +00:00
|
|
|
|
2020-02-10 19:27:58 +01:00
|
|
|
function double_inc (const i : int) : int is inc (i+1)
|
2019-05-12 20:56:22 +00:00
|
|
|
|
2020-02-10 19:27:58 +01:00
|
|
|
function foo (const i : int) : int is inc (i) + double_inc (i)
|