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