Guest User

Untitled

a guest
Apr 25th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # How many spaces do you use to indent the code in a public or private section?
  2.  
  3. # With keyword
  4. class User
  5. private
  6. def name; end
  7. end
  8.  
  9. # Indent one from keyword
  10. class User
  11. private
  12. def name; end
  13. end
  14.  
  15. # Indent two from keyword
  16. class User
  17. private
  18. def name; end
  19. end
Add Comment
Please, Sign In to add comment