mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
80 B
Ruby
8 lines
80 B
Ruby
|
value = 0.01
|
||
|
h = {}
|
||
|
n = 4*(10**6)
|
||
|
|
||
|
1.upto(n){|i|
|
||
|
h["%020d" % i] = value * i
|
||
|
}
|