Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 24th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. class Characters
  2. attr_accessor :name, :age, :race
  3. end
  4.  
  5. class Warrior < Characters
  6.         def taunt
  7.         puts 'RAAGGHGHGHG!!!'
  8.         end
  9. end
  10. class Rogue < Characters
  11. end
  12. class Mage < Characters
  13. end
  14. class Warrior < Characters     
  15. end
  16.  
  17. characterA = Warrior.new
  18. characterA.name = 'Andy'
  19. characterA.age = 26
  20. characterA.race = 'Orc'
  21.  
  22.  
  23.  
  24. puts 'My name is ' + characterA.name.to_s
  25. puts 'I\'ll kill you all! ' + characterA.taunt.to_s