Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc fixes #22

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,12 +388,12 @@ Generate a random 10 a-z character string

Generate a random 15 ASCII Character password

perl6 -e 'print roll 15, "0".."z"'
perl6 -e 'print roll "0".."z": 15'
perl6 -e 'say roll(15, "0".."z").join("")'
perl6 -e 'say roll("0".."z": 15).join("")'

Create a string of specific length

perl6 -e 'print "a" x 50'
perl6 -e 'say "a" x 50'

Generate and print an array of even numbers from 1 to 100

Expand Down Expand Up @@ -451,7 +451,7 @@ Convert all text to lowercase

Uppercase only the first word of each line

perl6 -ne 'say s/(\w+){}/{$0.uc}/' example.txt
perl6 -pe 's/(\w+){}/{$0.uc}/' example.txt

Invert the letter case

Expand Down