Difference between revisions of "perl notes"

From thelinuxwiki
Jump to: navigation, search
(Created page with "==variables== local <source lang="python">my $color='green';</source> global <source lang="python">our $color='purple';</source> <source lang="python"></source>")

Revision as of 11:47, 10 May 2021

variables

local

my $color='green';

global

our $color='purple';