Show HN: Nim in Action
21–30 of 44 posts
Re: Show HN: Nim in Action
#22Re: Show HN: Nim in Action
#23Earlier quoted context omitted.
Perhaps you should make chapter 3 free too? That's the kind of material is want to see before I decide if I like the language or the book. Of course, you might have a good reason not to do it, but that was my first thought when looking at the web site.
That is the big advantage of getting books out on shelves, so people can look through them. That's harder to do with more independent works. Now that I think about it, I use to buy programming books in University and just after (2005-ish), but I haven't really since. Even when I work places where we have a book budget; I never request anything. These days I read the documentation, and if I get stuck, I go to a stack…
Re: Show HN: Nim in Action
#24Re: Show HN: Nim in Action
#25Can Nim be used as drop-in replacement for C, like Rust?
Re: Show HN: Nim in Action
#26Can Nim be used as drop-in replacement for C, like Rust?
Yes, the nim compiler outputs C-source code then passes that to your compiler. It can also output other languages. That said while a lot is configurable, I wouldn't consider the generated C as something a human can work on.
Re: Show HN: Nim in Action
#27Earlier quoted context omitted.
Yes, the nim compiler outputs C-source code then passes that to your compiler. It can also output other languages. That said while a lot is configurable, I wouldn't consider the generated C as something a human can work on.
Doesn't it has garbage collection?
Re: Show HN: Nim in Action
#28Earlier quoted context omitted.
Doesn't it has garbage collection?
Optional garbage collection, with choices on which type of garbage collection.
Re: Show HN: Nim in Action
#29Author here. The development of this book has taken a while but I'm happy to say that it is now in print! Chapter 1 and 8 are free so be sure to give them a look if you're new to Nim. Previous discussion for the curious: https://news.ycombinator.com/item?id=10987975 Happy to answer any questions.
Perhaps you should make chapter 3 free too? That's the kind of material is want to see before I decide if I like the language or the book. Of course, you might have a good reason not to do it, but that was my first thought when looking at the web site.
I was given the option to make two chapters free. I figured an intro to Nim and an advanced chapter were good choices.
Re: Show HN: Nim in Action
#30Now that there'e even a book about Nim, what kind of production-level code do people write with it ? As a Python lover, Nim looks very nice on the surface...