For better or for worse, Go doesn’t have that.
my %hash = ( Foo => “bar”, Baz => “qux”, );
my %hash = ( Foo, “bar”, Baz, “qux”, );
Hence “=>” being called “fat comma” in perl.
Which means you can writer
my %h = (a => b => c => d);
my %h = (a, b => c, d);
Hence “=>” being called “fat comma” in perl.
Which means you can writer
or they all mean the same thing.