scala> last(List(1, 1, 2, 3, 5, 8))
res0: Int = 8
for having a result above, I wrote this code:
val yum = args(0).toInt
val thrill:
def last(a: List[Int]): List[Int] = {
println(last(List(args(0).toInt).last)
}
What is the problem with this code?
val thrill:is meaningless. Thelastdefinition makes no sense at all. You'd be better off just asking "how can I get the last element of a list" than what you've done here. Honestly, I go to great lengths to answer Scala questions, I edit the questions to make them look better, but the questions about Scala you've posted in the last few days have been awful. Look at other, well-voted, questions to see how to make them. – Daniel C. Sobral Feb 24 '11 at 18:32