The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

sample - This is the sample POD

SYNOPSIS

    my $num;
    $num = 1; # => 1
    ++$num;   # => is 2

    use PPI::Tokenizer;
    my $tokenizer = PPI::Tokenizer->new(\'code'); # => isa 'PPI::Tokenizer'

    my $str = 'Hello, I love you'; # => like qr/ove/

    my $obj = {
        foo => ["bar", "baz"],
    }; # => is_deeply { foo => ["bar", "baz"] }

    my $bool = 1; # => success

AUTHOR

moznion <moznion@gmail.com>