Exercises in macro writing
These are some exercises in meta-programming in Julia. I made these to make myself familiar with Julia symbolic expressions and macro system.
Literate programming
I use a system of literate programming called Entangled. Many of the code blocks you see in this document end up in the actual source code for the modules that I use in the examples.
file:src/MacroExercises.jl
module MacroExercises
include("Polynomials.jl")
end