Earlier quoted context omitted.
One of my favorite Perl features that has been disappointingly under-appropriated by other languages is quoting with q(...).
This is one of my favorite features of Ruby! Though Ruby makes it confusing AF because there are two quoting types for both strings and symbols, and they're different. (%Q %q %W %w %i) I can never remember which does which.... the letter choice feels really arbitrary.
https://elixir-lang.org/getting-started/sigils.html#strings-...