|
|
|
|
|
by soegaard
684 days ago
|
|
The idea behind macros is so to speak to allow the programmer to extend the compiler. In a language like MetaPost I can use equations between variables: x + y = 10
x - y = 6
A reference to a variable x will use the current set of equations and solve for x. The solution (it it exists) will become the value of the variable reference.Let's say I want to extend Rhombus with this new kind of variable
(let's call them linear variables). Each linear variable needs to have some static information attached.
Here the relevant information is the set of equations to consider.
A reference to a linear variable will then reduce (at compile time) the equations associated with the variable. The reduced set of equations is then used to generate runtime code that finds the value. In a sense "static information attached to an expression" is just a convenient
way of working with compile time information (in the sense currently used by
macros in Racket). |
|
It sounds a bit like if every C function (including hello world) had to have empty asm block because someone might need it some day.