mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 15:12:12 +00:00
15 lines
373 B
TypeScript
15 lines
373 B
TypeScript
var aGlobal: i32 = 1;
|
|
const aConstant: i32 = 3;
|
|
|
|
let aStartFunctionLocal: i32 = 2;
|
|
for (var anotherStartFunctionLocal: i32 = 0; anotherStartFunctionLocal < 1; ++anotherStartFunctionLocal);
|
|
for (let aGlobal /* that shadows */: i32 = 0; aGlobal < 1; ++aGlobal)
|
|
aGlobal;
|
|
|
|
{
|
|
let /* actually not */ aConstant: i64 = 5;
|
|
{
|
|
let /* still not */ aConstant: f32 = 10;
|
|
}
|
|
}
|