6 comments

[ 3.1 ms ] story [ 15.6 ms ] thread
I don't understand Go but: It is the "goto" necessary? A "loop" will not be better?

  if name == "boring_wozniak" /* Steve Wozniak is not boring *
  {
     return GetRandomName(retry)
  }
This has a very low but non-zero chance of exceeding the max call stack size
what are the odds? :)
so if your call stack max depth is n the odds are 1 : (8060^n)
Epiphany. Thank you.