| hobbs | frankg: same thing as the rest of that tree, holding modules. |
| frankg | hobbs, there is a bunch of empty dirs under it |
| Chris62vw | the auto directory? that is where perl parks its car they are not empty directories. they hold other directies |
| frankg | there are no files under it |
| hobbs | I suppose they might get left empty if you remove stuff. It's not like it actually matters |
| Chris62vw | so? that is fine |
| action | merlyn has a mush brain |
| merlyn | has a mush brain |
| SubStack | GumbyBRAIN: be merlyn |
| GumbyBRAIN | Merlyn has a wide selection. |
| alester | new ack coming soon! |
| t35t0r | GumbyBRAIN, stfu |
| GumbyBRAIN | stfu omg. |
| whiteghos1 | hey chris |
| wizardyesterday | hi whiteghos1 |
| whiteghos1 | you get that perl plugin install. for vim |
| wizardyesterday | whiteghos1: not yet let me download it |
| whiteghos1 | let me know ok.i want to show you a trick on it. |
| wizardyesterday | whiteghos1: thanks :) |
| whiteghos1 | you like it |
| wizardyesterday | oh I'm sure |
| whiteghos1 | that a yes i take it. |
| lvalue | hi, when perl searches to a variable inside of a package, if it's not found there does it search in the invoking program's namespace? |
| revdiablo | lvalue: No |
| narutosan | I have pasted in http://sial.org/pbot/23390. http://erxz.com/pb/1698. and http://erxz.com/pb/1699. can some one kindly help me |
| revdiablo | lvalue: It only looks in the current package or lexical scope, unless you tell it otherwise |
| narutosan | its a timetable script |
| lvalue | in this case what is the convention? pass the variables along with the arguments to the package methods ? |
| whiteghos1 | chirs. go to run on the perl plugin. |
| revdiablo | lvalue: What is "this" case? |
| lvalue | or is it possible to "import" other namespaces ? i need to access a variable from within a package that is defined as "our" in the program (outside the package) |
| revdiablo | There is always a package |
| hobbs | lvalue: then use it by its name. |
| revdiablo | lvalue: The "program" is package main lvalue: But reaching into main from another package... is extremely poor practice |
| lvalue | umm, that would be package main.. |
| revdiablo | If you need the value from the package, put it in the package's namespace |