From: Nobuyoshi Nakada Date: 2007-06-01T10:37:09+09:00 Subject: Re: operator => Hi, At Thu, 31 May 2007 17:24:42 +0900, Pierre-Alexandre Meyer wrote in [ruby-talk:253715]: > > >h = {:a => 1, :b=>2} > > Looking at the trunk, my understanding is that it will be replaced by : > in a next release? Correct? It's a syntax sugar but traditional syntax is still valid. The above example is equivalent to: h = {a: 1, b: 2} -- Nobu Nakada