Skip to content

Instantly share code, notes, and snippets.

@YumaInaura
Last active January 7, 2016 05:57
Show Gist options
  • Select an option

  • Save YumaInaura/ae29b1aa4b45a152701a to your computer and use it in GitHub Desktop.

Select an option

Save YumaInaura/ae29b1aa4b45a152701a to your computer and use it in GitHub Desktop.
Ruby | 定数を参照する ref: http://qiita.com/Yinaura/items/e0502c345b96174a62a4
class World
JAPAN = '日本'
end
World::JAPAN
# => "日本"
class World
JAPAN = '日本'
p JAPAN
end
# => "日本"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment