Created
April 17, 2020 08:16
-
-
Save geektutor/252efd787d450d002896061f5d3f87ab to your computer and use it in GitHub Desktop.
This file contains hidden or 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() { | |
List<String> myList = [ | |
'Angela', | |
'James', | |
'Katie', | |
'Jack', | |
]; | |
myList.add('Sodiq'); | |
print(myList); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment