object ScalaTest{
def main (args: Array[String]){
var i =0
while(i<=10){
println(i)
i +=1
}
}
}
When i do
c:\ Scalac ScalaTest.scala \\ it goes to the next line but
c:\ Scala ScalaTest.scala \\ Nothing is happening cursor is blinking in the next line but no response.
What am i doing wrong here. Not able to see the output or anything. Please help.