I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2009-07-04 15:29:43-07 by madhuj1260
how to set multiple values in classpath field
hi friends, I am Madhu babu. presently I am working on Inline-java, I had a doubt the how to add multiple classpaths in the CLASSPATH field.
Direct Responses: 11113 | Write a response
Posted on 2009-07-04 17:04:30-07 by patl in response to 11112
Re: how to set multiple values in classpath field
Just separate the directories as you would normally do in the OS environment variable:
CLASSPATH => '/a/b/c:/d/e/f' # Unix CLASSPATH => 'C:\a\b\c;C:\d\e\f:' # Windows
Direct Responses: Write a response