R
ry dahl
I'm very disappointed that I cannot format my hashes like this
{ :a => 1
, :b => 2
, :c => 3
}
The technique is popular in the haskell community; it has some obvious
benefits over the traditional
{ :a => 1,
:b => 2,
:c => 3
}
It doesn't work in 1.9 either.
ry
{ :a => 1
, :b => 2
, :c => 3
}
The technique is popular in the haskell community; it has some obvious
benefits over the traditional
{ :a => 1,
:b => 2,
:c => 3
}
It doesn't work in 1.9 either.
ry