Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

List all defined variables

#!/usr/bin/env perl
use v5.10;
use strict;
use warnings;

my $x;
my @y;

our $xx;

foreach my $variable (sort keys %main::) {
    say $variable;
}