Skip to content

Commit

Permalink
pir::exit__0i -> nqp::exit
Browse files Browse the repository at this point in the history
  • Loading branch information
kboga committed Mar 4, 2013
1 parent 3b004e5 commit ce18272
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Perl6/Compiler.nqp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Perl6::Compiler is HLL::Compiler {
method syntaxcheck($past, *%adverbs) {
if %adverbs<c> {
say("Syntax OK");
pir::exit__0i(0);
nqp::exit(0);
}
$past;
}
Expand Down Expand Up @@ -86,6 +86,6 @@ class Perl6::Compiler is HLL::Compiler {
PERL6LIB=\"lib\" perl6 example.pl
For more information, see the perl6(1) man page.\n");
pir::exit__0i(0);
nqp::exit(0);
}
}

0 comments on commit ce18272

Please sign in to comment.