Hi,
on #perl6, we were wondering how to use() modules from foreign
languages which have an incompatible identifier syntax. E.g.:
use perl5:Foo::Bar; # fine, no problem
# Load JavaScript modules from JSAN
use jsan:Test.Simple; # should we simply accept the dot, or...
use jsan:Test::Simple; # ask users to write this?
--Ingo
- use language_with_different_indentifier_syntax:... Ingo Blechschmidt
