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

Last updated: July 03,2024

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

This tutorial shows how to install perl-Return-MultiLevel.noarch on Fedora 35

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

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

This guide covers the steps necessary to uninstall perl-Return-MultiLevel.noarch on Fedora 35:

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

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

Last metadata expiration check: 2:47:11 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : perl-Return-MultiLevel
Version : 0.05
Release : 15.fc35
Architecture : noarch
Size : 15 k
Source : perl-Return-MultiLevel-0.05-15.fc35.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.