From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213 #!/usr/bin/perluse warnings;use strict;use Archlinux::Messages;status 'Starting to test messages';substatus 'Engaging our test any day now...';msg 'Okay looks good';warning q{Wait, we're going too fast!};error 'Oh boy an error happened!';
#!/usr/bin/perl
use
warnings;
strict;
Archlinux::Messages;
status
'Starting to test messages'
;
substatus
'Engaging our test any day now...'
msg
'Okay looks good'
warning
q{Wait, we're going too fast!}
error
'Oh boy an error happened!'