Last active
October 1, 2015 16:48
-
-
Save rocky/2026252 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
#!/usr/bin/env perl | |
use Enbugger; | |
eval <<'EOE'; | |
sub five() | |
{ | |
Enbugger->stop; # Does not stop | |
my $x = 1; | |
return 5; | |
} | |
EOE | |
Enbugger->load_debugger('perl5db'); # Enbugger->load_debugger('trepan') works though | |
print "five is ", five, "\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment