Getter / Setter

Getter

g test : int {
    ret 1;
}

Setter

s test(type:int) {
    print("Hello" + (type as string));
}