Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Chef
  2. # Habilito poder consultar el nombre y restaurant
  3. # sobre las instancias de la clase Chef
  4. attr_reader :name, :restaurant
  5. def initialize(name, restaurant)
  6. @name = name
  7. @restaurant = restaurant # -> An instance of the class Restaurant
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement