How'd we implement the mini-langs (other than its "text patterns" described yesterday) supported by Lua's `string` namespace? Using the Scanner upon which we bootstrapped a Lua parser?
`string.gsub` also supports a "%"-digit syntax referencing the captures from the pattern-matching which triggered the substitution. Combined with intermediate haystack & substitution characters, needs to be efficiently concatenated. Which I made sure our opcodes allows!
1/3?