Skip to content

Instantly share code, notes, and snippets.

@masak
Created November 19, 2012 11:03
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 masak/4110132 to your computer and use it in GitHub Desktop.
Save masak/4110132 to your computer and use it in GitHub Desktop.
Assignments on redeclarations are ignored in the REPL
$ nom
> my $a = 42;
42
> $a = 43
43
> my $a = 5
5
> $a
43
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment