diff options
| author | WormHeamer | 2025-08-10 02:46:50 -0400 |
|---|---|---|
| committer | WormHeamer | 2025-08-10 02:46:50 -0400 |
| commit | d4c768a481b923d407201c25d3d750040b6ccd44 (patch) | |
| tree | 16dd697288846b8effd1f18a3e23187654710e02 /test.lang | |
| parent | 1c4efc8009292b6f8d6079f87645e8eb65e85f3e (diff) | |
add type-specifiers to let, N_UNINIT for uninitialized values
Diffstat (limited to 'test.lang')
| -rw-r--r-- | test.lang | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,8 +1,9 @@ func main(a, b i64) i64 { + let x i64, y bool if a = b { let t = a a := b b := t } - return a + b + return a } |
