invalidObject Series (while)
Tracklist
- #!/usr/bin/perl1:02
- $power = 8;1:02
- sub fission {1:02
- fork1:02
- or $child = 1;1:02
- $power-- if $child;1:02
- if ($child) {exit unless --$power}1:02
- return $child; }1:02
- while (not &fission) {1:02
- print 0;1:02
- bomb:1:02
- while (&fission)1:02
- { print 1 }1:02
- }1:02
- goto 'bomb';1:00