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.

22 lines
187 B

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