On Jan 18, 6:03 pm, Phlip <phlip2... at gmail.com> wrote: > On Jan 12, 7:09 am, ikuta liu <ikut... at gmail.com> wrote: > > > Go language try to merge low level, hight level and browser language. > > Go uses := for assignment. Except that it doesn't. := is a declaration. s := "foo" is short for var s string = "foo" Cheers, ----aht