On 08/17/2018 10:43 AM, Todd Zullinger wrote:
ToddAndMargo wrote:
# perl -Msay -e 'say "Hi";'
Can't locate say.pm in @INC (you may need to install the say module) (@INC
contains: /usr/local/lib64/perl5 /usr/local/share/perl5
/usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5
/usr/share/perl5).
BEGIN failed--compilation aborted.
And I tried downloading it from cpan and it won't install.
What am I missing?
From the perl documentation¹, either of these work:
$ perl -e 'CORE::say "Hi";'
Hi
$ perl -e 'use feature 'say'; say "Hi";'
Hi
¹ https://perldoc.perl.org/functions/say.html
Huh! I am use to Perl6's way of doing it and was
trying to force the issue.
Thank you!
$ perl6 -e 'say "Hi";'
Hi
_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx/message/CNV52B5PPR2OS24NKWGNXWHVUPVKZY6U/