Created
March 9, 2020 19:21
-
-
Save DRSchlaubi/a2ed60b0b7c5154235a30b244f3fd709 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var list = [1,2,3,4,5,6,7,78,9]; | |
print(list.sublist(0, list.length)); | |
print(list.sublist(0, list.length - 1)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment