Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class Vehicle
  2. def initialize(number_of_wheels, type_of_tank, seating_capacity, maximum_velocity)
  3. @number_of_wheels = number_of_wheels
  4. @type_of_tank = type_of_tank
  5. @seating_capacity = seating_capacity
  6. @maximum_velocity = maximum_velocity
  7. end
  8.  
  9. def make_noise
  10. "VRRRRUUUUM"
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement