--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/47bb77be-9634-47cb-9899-3bb07328ee50o%40googlegroups.com.
*c = *c + 1 //why use *c and not just c, based on (c *Count) c is already a pointer?
why cast to int, c is already of type int?
c is of type *Count (pointer to Count), surely?