Skip to content

Instantly share code, notes, and snippets.

@makushline
Created December 15, 2015 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save makushline/e3a46724c1573d794f90 to your computer and use it in GitHub Desktop.
Save makushline/e3a46724c1573d794f90 to your computer and use it in GitHub Desktop.
class GPSCoordinate
attr_reader :latitude, :longitude
def initialize(latitude, longitude)
@latitude = latitude
@longitude = longitude
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment