Here's another question - really to all implementors: how best to collect & share test cases? should they go into the main repository? or somewhere else? J // class version of test case 017 class X { var val := 1 } var x := X.new print(x.val) x.val := 2 print(x.val)