val mychar=''
Does not compile and results in the following error:
error: unclosed character literal
val mychar='a'
etc is fine. I've tried playing around with converting "" to char but without much luck
Does not compile and results in the following error:
etc is fine. I've tried playing around with converting "" to char but without much luck |
|||||
|
|
There is no such thing as an "empty" Character -- what is an "empty" Integer? :) The closest is the NUL-character, which has an ordinal value of 0 ( ...or perhaps
Happy coding. |
|||||||||||||||||||||
|