Is there a way that I can take one step through part (or all) of the Perl 6 program? I was expecting to be -d , but of course not:
% perl6 -d test.p6
I thought I might be evaluating the file, but all at once:
% perl 6 > EVALFILE 'test.p6'
As I expected, it just runs the whole file.
I suspect that someone has not implemented this kind of thing. Is there a way I can connect at run time to insert actions between statements and so on? In Perl 5 land, this will be the DB class.
Also, does Perl 6 work with any general debugger? If I used the JVM backend, would it even be wise to use the Java tool (or is it gibberish at this point)?
source share