Skip to content

Instantly share code, notes, and snippets.

@carlows
Created January 10, 2019 01:07
Show Gist options
  • Save carlows/258f8b5e1a62cee37ba2a191f9ca7b94 to your computer and use it in GitHub Desktop.
Save carlows/258f8b5e1a62cee37ba2a191f9ca7b94 to your computer and use it in GitHub Desktop.
Reading = Struct.new(:date, :high, :low) do
def mean
(high + low) / 2.0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment