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