APL Parrot Target Practice #19

Transformation example

Regexes to parse strings:

token character_constant_double 
   { (") <double_quoted_character>* " }

token character_constant_single 
   { (') <single_quoted_character>* ' }

token single_quoted_character { '' | <-[']> }
token double_quoted_character { "" | <-["]> }
Copyright © 2006 Will Coleda & Patrick Michaud