How to Install and Uninstall perl-Return-MultiLevel.noarch Package on Fedora 34

Last updated: October 05,2024

1. Install "perl-Return-MultiLevel.noarch" package

This is a short guide on how to install perl-Return-MultiLevel.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Return-MultiLevel.noarch

2. Uninstall "perl-Return-MultiLevel.noarch" package

Please follow the steps below to uninstall perl-Return-MultiLevel.noarch on Fedora 34:

$ sudo dnf remove perl-Return-MultiLevel.noarch $ sudo dnf autoremove

3. Information about the perl-Return-MultiLevel.noarch package on Fedora 34

Last metadata expiration check: 5:57:41 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : perl-Return-MultiLevel
Version : 0.05
Release : 13.fc34
Architecture : noarch
Size : 15 k
Source : perl-Return-MultiLevel-0.05-13.fc34.src.rpm
Repository : fedora
Summary : Return across multiple call levels
URL : https://metacpan.org/release/Return-MultiLevel
License : GPL+ or Artistic
Description : This module provides a way to return immediately from a deeply nested call
: stack. This is similar to exceptions, but exceptions don't stop automatically
: at a target frame (and they can be caught by intermediate stack frames using
: eval). In other words, this is more like setjmp(3)/longjmp(3) than die.