I want to set LIST_SEPARATOR to perl, but all I get is a warning:
Name "main::LIST_SEPARATOR" used only once: possible typo at ldapflip.pl line 7.
Here is my program:
@vals;
push @vals, "a";
push @vals, "b";
$LIST_SEPARATOR='|';
print "@vals\n";
I’m sure that I’m missing something, but I don’t see it.
thanks
source
share