Saved Bookmarks
| 1. |
How Do I Append To The List? |
|
Answer» In scala to append into a LIST, use “:+” single value VAR myList = List.empty[STRING] In scala to append into a list, use “:+” single value var myList = List.empty[String] |
|