Tagged Questions
0
votes
1answer
438 views
When are Scala Semicolons required
I am trapped at work with a locked down pc. But I am trying to practice my scala. I am using Ideone.com since I can't even install scalac...
Anyway this is not compiling:
class DPt(var name: String, ...
4
votes
1answer
478 views
Why do I need semicolons after these imports?
I never really used Traits much in Scala so far, and I want to change this. I have this code:
import tools.nsc.io.Path
import java.io.File
trait ImageFileAcceptor extends FileAcceptor {
override ...