Displaying 2 results from an estimated 2 matches for "class_trait".
2006 Nov 04
0
traits-0.9.2 - better living through metaprogramming
..."pets"
"bacon"
<========< sample/e.rb >========>
~ > cat sample/e.rb
require ''traits''
#
# shorhands exit to enter ''class << self'' in order to define class traits
#
class C
class_trait ''a'' => 4
c_has :b => 2
end
print C::a, C::b, "\n"
~ > ruby sample/e.rb
42
<========< sample/f.rb >========>
~ > cat sample/f.rb
require ''traits''
#
# as traits are defined they...
2006 Nov 04
0
traits-0.10.0
..."pets"
"bacon"
<========< sample/e.rb >========>
~ > cat sample/e.rb
require ''traits''
#
# shorhands exit to enter ''class << self'' in order to define class traits
#
class C
class_trait ''a'' => 4
c_has :b => 2
end
print C::a, C::b, "\n"
~ > ruby sample/e.rb
42
<========< sample/f.rb >========>
~ > cat sample/f.rb
require ''traits''
#
# as traits are defined they...