File: demo_non-fields.pl

package info (click to toggle)
libperl6-form-perl 0.090-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 584 kB
  • sloc: perl: 3,080; makefile: 8
file content (16 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use warnings FATAL => 'all';
use English '-no_match_vars';

use Perl6::Form;

my @data = (
    'foo{{}}bar{{}}biz{{}}baz[[]]',
    'boz{{}}noz{{}}fuz{{}}nuz[[]]',
);

print form qq#{""""""""""""""""""""""""""""""""""""""""""}#, \@data;

my $data = "foo{{}}bar{{}}biz{{}}baz[[]]\nboz{{}}noz{{}}fuz{{}}nuz[[]]";

print form qq#{""""""""""""""""""""""""""""""""""""""""""}#, $data;