Guest User

Untitled

a guest
Mar 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Foo
  2. attr_accessor :rwfoo
  3. attr_reader :rofoo
  4.  
  5. def initialize
  6. @rwfoo = "default value"
  7. @rofoo = "ro default value"
  8. end
  9. end
Add Comment
Please, Sign In to add comment