Created
March 10, 2019 07:34
-
-
Save NezSpencer/3856cec5a9be57f1fbd4b6c13d0fab49 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
val list = mutableListOf<String>() | |
for (i in 1 .. 50) | |
list.add("Text name $i") | |
list[0] = "" //dummy data for header | |
list.add("") // dummy data for footer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment