Skip to content

Instantly share code, notes, and snippets.

@S2
Last active August 29, 2015 14:17
Show Gist options
  • Save S2/a779bb71c137c0ea2ce2 to your computer and use it in GitHub Desktop.
Save S2/a779bb71c137c0ea2ce2 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use 5.16.2;
use strict;
use warnings;
use utf8;
sub r{
our $v;
return $v++;
}
say r(); # 0
say r(); # 1
say r(); # 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment