File: local.pl

package info (click to toggle)
libconfig-merge-perl 1.01-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 440 kB
  • ctags: 36
  • sloc: perl: 804; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    main => {
        foo => {
            '!' => {
                    '-'  => [2,4,6],
                    '+'  => [qw(k l m)],                    
                   },
            '9'  => 'Z',
        },
        bar => {
            '!' => {
                    '-'  => [2,4,6,20],
                    '+'  => { 
                        2  => 'Z',
                        5  => 'Y',
                        12 => 'X',
                        14 => 'W',
                    },
                   },
        },
        baz => [qw( x y z )],
    }
}