Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active June 20, 2022 00:28
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 mcsee/2e4c88a516078500ce833dbfbd3d9b0e to your computer and use it in GitHub Desktop.
Save mcsee/2e4c88a516078500ce833dbfbd3d9b0e to your computer and use it in GitHub Desktop.
# Storing magnitudes without units is another smell
class PhysicsConstants
LIGHT_SPEED = 299792458.freeze
end
def energy(mass)
mass * PhysicsConstants::LIGHT_SPEED ** 2
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment