• @wyrmroot
    link
    93 months ago

    I hate seeing data encoded into magic comments, struct tags included. One of my biggest gripes with Go is that I think they should have used a different symbol to distinguish important annotations from true comments.

    • Ethan
      link
      English
      33 months ago

      Who uses struct tags for comments? I’ve never used or seen them used as anything except annotations as in tag:"value". And linters (go vet?) will tell you if you’re formatting them wrong.

    • @[email protected]
      link
      fedilink
      13 months ago

      I used the embed feature to embedd some files into the binary recently. It feels so hacked together.