class Landmark

Attributes

location[RW]
name[RW]

Public Class Methods

new(name, location) click to toggle source
# File lib/travel/landmarks.rb, line 4
def initialize(name, location)
  @name = name
  @location = location
end