in reply to Copying complete module code into a script
If you forget to switch back to package main, or you still try and use the module, you're not going to go very far.# Module Pasted Here package Something; # Code # End Paste package main; #use Something; # Your code
|
|---|