Skip to content

Instantly share code, notes, and snippets.

@bessarabov
Created September 24, 2014 06:19
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
#!/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