8 lines
75 B
Text
8 lines
75 B
Text
class Foo {
|
|
init() {
|
|
return;
|
|
print this;
|
|
}
|
|
}
|
|
|
|
var foo = Foo();
|