Metaprogramming Ruby Part 1
| rubyNoting highlights from the book Metaprogramming Ruby (2nd Edition).
Chapter 1: The M Word
- Language constructs - variables, classes, methods
- Runtime for Ruby is quite different from compiled languages like C++ in that during runtime, many language constructs are still available for introspection
- The M word Metaprogramming is writing code that manipulates language constructs at runtime.