Methods
struct Foo {
var x: int;
mut fun setX(x: int) {
this.x = x;
}
fun getX(): int {
return x; // implicit `this`
}
}Last updated
struct Foo {
var x: int;
mut fun setX(x: int) {
this.x = x;
}
fun getX(): int {
return x; // implicit `this`
}
}Last updated