module Browser::Platform
def platform
def platform case when linux? then :linux when mac? then :mac when windows? then :windows else :other end end
def platform case when linux? then :linux when mac? then :mac when windows? then :windows else :other end end