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

Fixed array slice with [0..^*] #2561

Merged
merged 1 commit into from Jan 13, 2019
Merged

Fixed array slice with [0..^*] #2561

merged 1 commit into from Jan 13, 2019

Conversation

ufobat
Copy link
Contributor

@ufobat ufobat commented Jan 13, 2019

Documentation had mentioned a wrong result of a array slice.

$ perl6 -e 'my @a = 1..5; say @a[0..^*]'
(1 2 3 4)

```
$ perl6 -e 'my @A = 1..5; say @A[0..^*]'
(1 2 3 4)
```
Copy link
Contributor

@JJ JJ left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks fine. Thanks.

@JJ JJ merged commit 69e7e3a into master Jan 13, 2019
@Altai-man Altai-man deleted the ufobat-patch-1 branch January 13, 2019 18:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants