How to Install and Uninstall perl-constant.noarch Package on Fedora 38

Last updated: October 27,2024

1. Install "perl-constant.noarch" package

This is a short guide on how to install perl-constant.noarch on Fedora 38

$ sudo dnf update $ sudo dnf install perl-constant.noarch

2. Uninstall "perl-constant.noarch" package

This guide let you learn how to uninstall perl-constant.noarch on Fedora 38:

$ sudo dnf remove perl-constant.noarch $ sudo dnf autoremove

3. Information about the perl-constant.noarch package on Fedora 38

Last metadata expiration check: 1:39:47 ago on Sat Mar 16 16:59:57 2024.
Installed Packages
Name : perl-constant
Version : 1.33
Release : 491.fc38
Architecture : noarch
Size : 26 k
Source : perl-constant-1.33-491.fc38.src.rpm
Repository : @System
From repo : fedora
Summary : Perl pragma to declare constants
URL : https://metacpan.org/release/constant
License : GPL-1.0-or-later OR Artistic-1.0-Perl
Description : This pragma allows you to declare constants at compile-time:
:
: use constant PI => 4 * atan2(1, 1);
:
: When you declare a constant such as "PI" using the method shown above,
: each machine your script runs upon can have as many digits of accuracy
: as it can use. Also, your program will be easier to read, more likely
: to be maintained (and maintained correctly), and far less likely to
: send a space probe to the wrong planet because nobody noticed the one
: equation in which you wrote 3.14195.
:
: When a constant is used in an expression, Perl replaces it with its
: value at compile time, and may then optimize the expression further.
: In particular, any code in an "if (CONSTANT)" block will be optimized
: away if the constant is false.