Skip to content

Commit

Permalink
perl minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhimavanth committed May 10, 2020
1 parent a5ae186 commit 21f1b28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion perl/arrays/arrays.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Array is a variable which gives dynamic storage for a list. SInce list is immutable, you can't change the list items directly. If you want to modify the list, you need to store it in an array variable.
Array is a variable which gives dynamic storage for a list. Since list is immutable, you can't change the list items directly. If you want to modify the list, you need to store it in an array variable.

Array variable begins with `@`.

Expand Down
2 changes: 1 addition & 1 deletion perl/introduction/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Perl(Practical Extraction and Report Language) is especially designed for text p
# Sample program

```perl
print "Hello World!!"; // to display "Hello World!!"
print "Hello World!!"; # to display "Hello World!!"
```
### Run [here](https://onecompiler.com/perl)

Expand Down
2 changes: 1 addition & 1 deletion perl/operators/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Below are the assignment operators present in Perl.
| >>= | Right shift and assign| $x >>= 2 is same as $x = $x >> 2|
| &= | Bitwise and assign| $x &= 10 is same as $x = $x & 10|
| ^= | Bitwise exclusive OR and assign| $x ^= 10 is same as $x = $x ^ 10|
| `|=` |Bitwise inclusive OR and assign | `$x |= 10 is same as $x = $x | 10`|
| \|= |Bitwise inclusive OR and assign | `$x |= 10 is same as $x = $x | 10`|

### Example

Expand Down

0 comments on commit 21f1b28

Please sign in to comment.