Skip to content

Instantly share code, notes, and snippets.

@masak
Created March 17, 2010 22:34
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/335815 to your computer and use it in GitHub Desktop.
Save masak/335815 to your computer and use it in GitHub Desktop.
$ tardis -e 'my $a = 42; my $b := $a; $b = 5'
# Compiling '-e'...
# Running...
# Finished. Ticks: 0..3
> look
{
$a = Any
$b = Any
}
> go 1
{
$a = 42
$b = Any
}
> step
{
$a = 42
$b = 42
}
> n
{
$a = 5
$b = 5
}
> go 1
{
$a = 42
$b = Any
}
> quit
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment