I am very new to scala.
Wrote a very basic scala script as below.
args.foreach(a=>println(a))
Executed the above in command prompt using the following
scala test1.scala Happy Scala Programming !!!
The output that I expected is
Happy
Scala
Programming
!!!
But I got the following instead
Happy
Scala
Programming
As we observe the "!!!" (exclamation characters are missing).
Need to understand why exclamation characters are not printed and what is way to get those characters printed.
I am executing the script on Windows 7 command prompt