mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-13 15:01:28 +00:00
PSON decoder example using namespaced imports
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
let i: i32;
|
||||
var i: i32;
|
||||
for (i = 0; i < 10; ++i) {
|
||||
;
|
||||
}
|
||||
assert(i == 10);
|
||||
|
||||
for (let j: i32 = 0; j < 10; ++j) {
|
||||
for (var j: i32 = 0; j < 10; ++j) {
|
||||
;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user