Hacker News new | ask | show | jobs
by helper 2973 days ago
Is the "static initialization order fiasco" a thing that can happen in go? The order of package level variable initialization is well defined in the spec and because go doesn't allow import cycles it seems like the issue mentioned in the linked page is not possible.
1 comments

Static initialization order may be defined, but that doesn't mean it's easy to reason about.