diff options
| author | Baitinq <[email protected]> | 2025-03-11 00:04:11 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-03-11 00:04:56 +0100 |
| commit | a6b7f27a848f337a3d742f51a3d22da5712b4e88 (patch) | |
| tree | 21ddd713b65aaba06787e6fc08285486e6e6be9c /examples | |
| parent | Misc: Add README (diff) | |
| download | interpreter-a6b7f27a848f337a3d742f51a3d22da5712b4e88.tar.gz interpreter-a6b7f27a848f337a3d742f51a3d22da5712b4e88.tar.bz2 interpreter-a6b7f27a848f337a3d742f51a3d22da5712b4e88.zip | |
Codegen: Fix bug with functions without name
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/7.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/7.src b/examples/7.src index c0690b6..b10a350 100644 --- a/examples/7.src +++ b/examples/7.src @@ -2,7 +2,7 @@ let ten = () => i64 { return () => i64 { return 10; }(); -}; /* TODO */ +}; let main = () => i64 { let i = 4; |