Variable declarations seperate from assignment

This commit is contained in:
nub31
2025-05-27 11:31:28 +02:00
parent 98c42f6021
commit 0541e56224
9 changed files with 115 additions and 67 deletions

View File

@@ -3,9 +3,9 @@ namespace main
/// # Documentation
/// ## Documentation subtitle
export func main(args: []string) {
i = 0
let i: i64
x = math::add(1, 1)
let x = math::add(1, 1)
c::printf("%d\n", args.count)