Hacker News new | ask | show | jobs
by elevenE 5426 days ago
Can anyone explain what effect

  #define goto
would have? It doesn't looks valid, because if I have

  myLabel:
  /* some code*/
  goto myLabel;
would produce

  myLabel;
Which, as far as I know shouldn't compile because it expects either a normal expression or a definition/declaration and myLabel; doesn't appears to be any of them. (Maybe I'm missing something)