Edit s/backtick/backslash/g
There are examples of basic file handling in the manual
Indeed, I missed that -- I should really read the whole manual when 0.9.6 is available...
But of course a topic "Files" in Nim by Example would be nice.
For that "Nim by Example" -- we have in http://nimrod-by-example.github.io/oop/ the statement: "Methods work in the same was as procs, including UFCS,". I would suggest s/was/way/ and maybe explain UFCS, guess it is not really a common term. (found that with google on D-lang pages only).
You can save a lot of time just reading the manual. It's much easier, than gather info by pieces or make guesses. All the more the manual is not large and quite good (clear) written.
Maybe it should be renamed to "tutorial", people seem not to like the word "manual".
For the start you can skip some sections, like "Grammar", but e.g. procedure's syntax should be useful for you: http://nimrod-lang.org/manual.html#method-call-syntax_toc (about UFCS).
people seem not to like the word "manual"
Its pretty funny to me, actually. The reason I generally avoid manuals is because many manuals give the barest explanation for something with an abstract syntax description and no examples. In fact, many manuals (not all) for programming languages have actually left out very important information and context that you really could not possibly deduce from the syntax description and small amount of information given. Or, the manual will give the most concise explanation possible.
Actually, the last few years manuals have gotten better. Its funny though, because I feel like I have actually been trained (by my experience) to avoid manuals. Nim's manual is pretty exceptional.