mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 23:12:19 +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;
|
||
|
}
|