You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
152 B

28 years ago
  1. sub foo()
  2. {
  3. my $i=0;
  4. if ($i) {
  5. my $a = "zeev";
  6. } else {
  7. my $b = "andi";
  8. }
  9. }
  10. sub bar()
  11. {
  12. foo();
  13. }
  14. for ($i=0; $i<1000000; $i++) {
  15. bar();
  16. }