<pre>1. improve new func (by Albert Liu @ jpush) func new(Type, value ...Type) *Type 2. support &Type(value) grammar Examples: px := new(int, 9527) px := &int(9527) Some discuss: <a href="https://groups.google.com/d/msg/golang-nuts/I_nxdFuwAmE/jNObXNDy5bEJ">https://groups.google.com/d/msg/golang-nuts/I_nxdFuwAmE/jNObXNDy5bEJ</a></pre>