mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 07:22:21 +00:00
10 lines
121 B
TypeScript
10 lines
121 B
TypeScript
|
class A {
|
||
|
boolValue: bool;
|
||
|
}
|
||
|
|
||
|
export function test(): bool {
|
||
|
let a: A;
|
||
|
a.boolValue = true;
|
||
|
return a.boolValue;
|
||
|
}
|