Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Clean up exception printing when catching exceptions in interactive m…
Browse files Browse the repository at this point in the history
…ode.
  • Loading branch information
pmichaud committed May 26, 2010
1 parent 9125c3c commit c5659bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HLL/Compiler.pm
Expand Up @@ -115,7 +115,7 @@ class HLL::Compiler is PCT::HLLCompiler {
{
$output := self.eval($code, |%adverbs);
CATCH {
pir::print($! ~ "\n");
pir::print(~$! ~ "\n");
next;
}
};
Expand Down

0 comments on commit c5659bb

Please sign in to comment.