|
|
|
|
|
by birdfood
1444 days ago
|
|
I've been diving into Nim in my free time after experimenting with Zig and Rust. I really appreciate how clearly I can layout business logic in code without needing to qualify what the compiler should do (my biggest issue with rust is all the stuff you need to do to satisfy the borrow checker I feel obfuscates your intention). Getting to use Nim for your day job sounds like a dream! I'm particularly keen on Nim's UFCS |
|
One of my favourite parts about UFCS is how it can turn C libraries that I've had to bind into nice clean looking interfaces!
Becomes Which when called is super lovely!