#!/usr/bin/ruby
# class_constant.rb

class Something
  Const = 25
end

puts Something::Const
