diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-04-12 13:09:31 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-04-12 13:09:31 -0400 |
| commit | 6c01eef851439549018267fdc439e4884af0c624 (patch) | |
| tree | 0599dd071b8a5effb67e6a87ed1c34777eb8d8c7 /test/corecursive_func.tm | |
| parent | 17cb6ffd88c4464c513b045f4b06c4e6e46e8f22 (diff) | |
Introducing the main() function
Diffstat (limited to 'test/corecursive_func.tm')
| -rw-r--r-- | test/corecursive_func.tm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/corecursive_func.tm b/test/corecursive_func.tm index 0ff92e53..22ffd627 100644 --- a/test/corecursive_func.tm +++ b/test/corecursive_func.tm @@ -10,5 +10,6 @@ func pong(x:Int)->[Text] else return ["pong: {x}"] ->> ping(3) -= ["ping: 3", "pong: 2", "ping: 1", "pong: 0"] +func main() + >> ping(3) + = ["ping: 3", "pong: 2", "ping: 1", "pong: 0"] |
