struct test { bar:String = "1233"; func foo() { __fstdout_println(bar); } } var x := test{}; x.foo(); x.bar = "555"; x.foo();