in reply to how to make for exporter reference
How i make for exporter a referenceI don't understand (feel free to ask in your native language, perlmonks is international). Maybe you want to read `perldoc Exporter'?
how i make for run some sub rutine when the script finish(something like that unonload, in html)use an END block, ie
See Execution order of END/CHECK vs BEGIN/INIT for more info on that.print "hello $/"; END { warn "this is the end"; } print "my friend $/"; __END__ hello my friend this is the end at - line 3.
how work DESTROY becouse i can't use or i not know as useHeh, read any of
|
|---|