This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta - Updates, tidy-ups and remove boilerplate
[perl5.git] / pod / perlinterp.pod
index e1af333..7ac6c9e 100644 (file)
@@ -70,8 +70,7 @@ needs, the stacks, and so on.
 
 Now we pass Perl the command line options, and tell it to go:
 
- exitstatus = perl_parse(my_perl, xs_init, argc, argv, (char **)NULL);
- if (!exitstatus)
+ if (!perl_parse(my_perl, xs_init, argc, argv, (char **)NULL))
      perl_run(my_perl);
 
  exitstatus = perl_destruct(my_perl);