I am new to Scala and programming in general. How would I go to write a list into a .csv file using Scala?
So I have a list of objects...
List[test] = List(test(Group1,lol,1,2,3),test(Group2,lel,4,5,6)....)
how would I export it to a .csv with 4 columns, and each line having the attributes of an object?
Any help is appreciated.