14 lines
122 B
Plaintext
14 lines
122 B
Plaintext
class A {
|
|
var inner = 10;
|
|
|
|
func test(){
|
|
print(this.inner);
|
|
}
|
|
}
|
|
|
|
|
|
func hello(){
|
|
print("hello");
|
|
}
|
|
|