Skip to content

Instantly share code, notes, and snippets.

@elight
Last active August 29, 2015 13:58
Show Gist options
  • Save elight/10060434 to your computer and use it in GitHub Desktop.
Save elight/10060434 to your computer and use it in GitHub Desktop.
// illegal
grid := [][]int{
{1, 0, 1},
{0, 1, 0},
{1, 0, 1}
}
// legal
grid := [][]int{
{1, 0, 1},
{0, 1, 0},
{1, 0, 1}}
// whitespace
// shouldn't
// matter
@avdi
Copy link

avdi commented Apr 7, 2014

Very lispy.

@elight
Copy link
Author

elight commented Apr 7, 2014

@nate: I find your use of a significant-yet-appearing-superfluous comma disturbing–especially because it works!

@mstahl
Copy link

mstahl commented Apr 7, 2014

I don't even...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment