Created
May 3, 2010 10:57
-
-
Save snarkyboojum/387966 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ alpha tardis -e 'my $a = 5; my $b = 6;' | |
# Compiling '-e'... | |
# Running... | |
Got block: main | |
Got variable: $a | |
Got variable: $b | |
Got block: main | |
Got variable: $a | |
Got variable: $b | |
Got block: main | |
Got variable: $a | |
Got variable: $b | |
# Finished. Ticks: 0..2 | |
> look | |
Array | |
Hash | |
{"main" => ["\$a" => "Any()", "\$b" => "Any()"]} | |
> step | |
Array | |
Hash | |
{"main" => ["\$a" => 5, "\$b" => "Any()"]} | |
> n | |
Array | |
Hash | |
{"main" => ["\$a" => 5, "\$b" => 6]} | |
> n | |
Can not go beyond last tick. | |
> go 0 | |
Array | |
Hash | |
{"main" => ["\$a" => "Any()", "\$b" => "Any()"]} | |
> look | |
Array | |
Hash | |
{"main" => ["\$a" => "Any()", "\$b" => "Any()"]} | |
> q | |
$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment