summaryrefslogtreecommitdiff
path: root/sample/attr.rb
blob: 2db79f1ae5caa912230f864ea9a3efaa3753e106 (plain)
1
2
3
4
5
6
7
8
9
class Foo
  attr("test", %TRUE)
end

foo = Foo.new
foo.test = 10
print(foo.test, "\n")
foo._inspect.print
print("\n")