Hey guys,
I've got some free time I can allocate to making YouTube videos for anything Nim.
What are some things you'd like to see videos/tutorials on?
I've got generics, templates, macros high on the priority list. What else?
I've got generics, templates, macros high on the priority list. What else?
Perfect. Else is using GUI frameworks. Btw does Nim have macros in the style of the C Preprocessor?
Nim macros operate on Abstract Syntax Tree level and are integrated into the language, unlike C pre processor which is just replacing text. They are much more powerful - you can generate code, modify the AST tree directly, change how Nim behaves, etc.
See: https://nim-lang.org/docs/tut3.html, https://dev.to/beef331/demystification-of-macros-in-nim-13n8
I would like to see generics, templates, macros as OP mentioned, maybe async with ORC or development for embedded devices with ORC.
Appreciate all the feedback guys. I'll make the YT channel tonight and drop the link here.
Will be starting with Macros because they're fun as hell ; )