Skip to content

Instantly share code, notes, and snippets.

@bessarabov
Created September 24, 2014 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bessarabov/0fe07b50fab2f09f50ff to your computer and use it in GitHub Desktop.
Save bessarabov/0fe07b50fab2f09f50ff to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
use warnings FATAL => 'all';
use utf8;
use open qw(:std :utf8);
sub main {
my %hash = (
a => 123,
b => '',
c => undef,
abcdef => 'lalala',
);
my @array = ( 1, 2, ['a', 'b'], sub { return 'test' } );
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment