Tagged as: nim

Compile nim on Android

stisa, Dec 18, 2016

Nim is a programming language that I’ve been playing with for the last few months.
Unfortunately, my pc is stuck in the limbo of warranty for the next month or so, and I found myself without any way to code.
Or so I thought, until I remembered the Android phone in my pocket and, with a bit of effort, I got Nim to compile on it!

Continue reading...

Nimble: running task before/after install

stisa, Oct 25, 2016

When you install a package through nimble, it performs an action called install. If you are the author of a nimble package, you may want to have nimble run a task before or after your package is installed, for example to git clone a dependency, echo some debug information or whatever. To do this, you can make use of two hooks that nimble provides when using the nimscript format:

Continue reading...