In my program, I have:
val f = Source.fromURL(url)
var lineList
try lineList = f.getLines.toList finally f.close()
I get compilation error:
Error:(13, 1) '=' expected but ';' found. try lineList = f.getLines.toList finally f.close()
What mistake am I making?In fact I am doing what error message asks me to do.