Ruby/Number/octal numbers
Материал из Wiki.crossplatform.ru
Версия от 17:10, 26 мая 2010; (Обсуждение)
Convert string to integer (oct)
"405".to_i(8) # => 261
convert string to oct
"405".oct # => 261
Oct number with 0o
puts 0o100 # => 64