templates and macros
TLDR
- pretty much skipped the entire section on templates, and definitely on macros
- FYI: you dont know nim if you dont know templates & macros
TODOs
- niminaction: chapter 9
- macros
- ^ continue until you get to SpecialTypes
- macro tut
- fusion astdsl
- templates vs generics
- system.nimNode is discussed here
- typed vs untyped for templates
- custom annotations with template pragmas
- macro pragmas
- asyncmacro
- put the asyncdispatch templates in this file
- niminaction chapter 9
templates
- simple form of a macro
- supports lazy evaluation
- enables raw code substitution on nim's abstract syntax tree
- are processed in the semantic pass of the compiler
- accepts meta types
template types
- untyped an expression thats not resolved for lazy evaluation
- typed an expression that is resolved for greedy evaluation
macros
- an API for metaprogramming
Templates
template blockRunner(please: bool; body: untyped): void
- example of using untyped to get a block of statements the block statements are bound to the body param Source Edit