The C Function
Warning: What follows is not useful! While lying in bed one night many moons ago, I thought to myself: can you write a function in Go that counts how many parenthesis it was called with? In particular, I was interested in seeing if I could count the number of parenthesis pairs in a Go function call. For instance, imagine a function in Go named c, I wanted to know if you could get c() to return 1, c()() to return 2, and so on....