Search notes:

Perl module Const::Fast

use warnings;
use strict;
use Const::Fast;
use feature 'say';

const my $one => 1;
const my $two => 2;

say $one + $two;

# $one = 5; # Modification of a read-only value attempted
Github repository PerlModules, path: /Const/Fast/script.pl
Perl modules.

Index