diff options
author | Geoff Liu <g@geoffliu.me> | 2015-08-30 14:22:11 -0600 |
---|---|---|
committer | Geoff Liu <g@geoffliu.me> | 2015-08-30 14:22:11 -0600 |
commit | eb7e58d5fc649ed2713c7685539bd5edcd9e8ade (patch) | |
tree | 72a9fe5106bed0735089b5c7a2b22540f7ebb3a7 /perl.html.markdown | |
parent | 1d1def16a5d7925bb8f7fba7dc49182e33359e85 (diff) | |
parent | b124fd58df56a5e1ee9925481fbde1f22ccfb386 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'perl.html.markdown')
-rw-r--r-- | perl.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl.html.markdown b/perl.html.markdown index 3c0699ad..4e172406 100644 --- a/perl.html.markdown +++ b/perl.html.markdown @@ -12,16 +12,16 @@ Perl 5 is a highly capable, feature-rich programming language with over 25 years Perl 5 runs on over 100 platforms from portables to mainframes and is suitable for both rapid prototyping and large scale development projects. ```perl -# Single line comments start with a number symbol. +# Single line comments start with a number sign. #### Perl variable types -# Variables begin with the $ symbol. +# Variables begin with a sigil, which is a symbol showing the type. # A valid variable name starts with a letter or underscore, # followed by any number of letters, numbers, or underscores. -### Perl has three main variable types: scalars, arrays, and hashes. +### Perl has three main variable types: $scalar, @array, and %hash. ## Scalars # A scalar represents a single value: |