in reply to Re^4: How to safely use $_ in a library function?
in thread How to safely use $_ in a library function?

It reminds me more and more of code like this:

10: A=2 20: B=4 30: GOTO 200 40: PRINT C 50: END 200: C=A+B 210: GOTO 40