source:
trunk/essentials/dev-lang/perl/t/lib/dprof/test3_t
| Last change on this file was 3181, checked in by , 19 years ago | |
|---|---|
| File size: 163 bytes | |
| Line | |
|---|---|
| 1 | sub foo { |
| 2 | print "in sub foo\n"; |
| 3 | exit(0); |
| 4 | bar(); |
| 5 | } |
| 6 | |
| 7 | sub bar { |
| 8 | print "in sub bar\n"; |
| 9 | } |
| 10 | |
| 11 | sub baz { |
| 12 | print "in sub baz\n"; |
| 13 | bar(); |
| 14 | foo(); |
| 15 | } |
| 16 | |
| 17 | bar(); |
| 18 | baz(); |
| 19 | foo(); |
Note:
See TracBrowser
for help on using the repository browser.
