I’ve been meaning to give Odin a real go for years now, ever since I first saw Bill’s booth at the first HMS conference, and after recently getting burned one-too many times with C/C++ build quirks (system includes in this case) I’ve decided it’s finally time.
What are the best resources, like video overviews and the like, for getting up to speed quickly?
This isn’t as daunting as you might expect. Many people have said it is a very clear and easy to read codebase, and shows you how to program in Odin cleanly and effectively.
The demo under examples/demo/demo.odin is an oft-cited great place to start, and it was where I started too. Beyond that, you could pick almost any one of the simpler core libraries to have a look through in order to understand what Odin code looks like in practice.
core:strings is well-documented. core:strconv is also another good place to poke around in if you want something crunchier, since converting between numbers and strings is a very basic tool.