下面的代码在 repl.it 和 codeacademy 实验室中失败,但是当我选择密钥长度 < 8 时,它可以工作。irb 中的密钥长度都没有失败。
这只是网络 REPL 的一个问题,还是对密钥的长度有真正的限制?
class Fixnum
def in_words
words =
{
100000000 => "trillion"
}
puts words[self]
end
end
100000000.in_words