mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 07:22:21 +00:00
8 lines
115 B
TypeScript
8 lines
115 B
TypeScript
var a: i32;
|
|
let b: i32;
|
|
const c: i32 = 0;
|
|
let d = 2;
|
|
|
|
let e; // type expected
|
|
const f: i32; // must be initialized
|