Most languages (Ruby included) allow number literals to be written in at least three bases: decimal, octal and hexadecimal. Numbers in decimal base is the usual thing and are wr
and you can do:
>> easy_to_read_binary = 0b1110_0000_0000_0000 => 57344 >> easy_to_read_binary.to_s(10) => "57344"