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

Last updated: October 07,2024

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

In this section, we are going to explain the necessary steps to install perl-Return-MultiLevel.noarch on Fedora 36

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

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

Learn how to uninstall perl-Return-MultiLevel.noarch on Fedora 36:

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

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

Last metadata expiration check: 4:30:07 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : perl-Return-MultiLevel
Version : 0.08
Release : 2.fc36
Architecture : noarch
Size : 22 k
Source : perl-Return-MultiLevel-0.08-2.fc36.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.