10 lines
103 B
Text
10 lines
103 B
Text
|
class Foo {
|
||
|
init() {
|
||
|
this.name = "test";
|
||
|
print this;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var foo = Foo();
|
||
|
print foo.name;
|