The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Syntax::Feature::Qqn - Perl syntax extension for line-based quoting

SYNOPSIS

  use syntax 'qqn';

  $bar = 'BAR';
  @foo = qqn {
    foo
    $bar
    bam
  };
  # ("foo", "BAR", "bam")

DESCRIPTION

This module is an extension of Syntax::Feature::Qn. See those docs for details.

SEE ALSO

Syntax::Feature::Qn, q and qq in perlfunc.

AUTHOR

Rick Myers, <jrm@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2017 by Rick Myers.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.20.1 or, at your option, any later version of Perl 5 you may have available.