Just to get the ball rolling:
- Short variable names
- Error checking routines (the
!err
testing gets prolix quickly) - Never use a
var
when you can use a:=
defer
is your friend
Just to get the ball rolling:
!err
testing gets prolix quickly)var
when you can use a :=
defer
is your friend