We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def characterLiteralsUnicodeLiteralStrings(res0: String) { val c = '\u0061' //unicode for a c.toString should be(res0) }
prints to val c = 'a' //unicode for a Source code: https://github.com/scala-exercises/exercises-stdlib/blob/master/src/main/scala/stdlib/LiteralStrings.scala Page: https://www.scala-exercises.org/std_lib/literal_strings
val c = 'a' //unicode for a
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. Do you have a proposal how to fix it or would you like to remove this part?
Sorry, something went wrong.
looks like a framework bug. The Oct code is parsed properly. Temporary walkaround would be a better comment.
No branches or pull requests
prints to
val c = 'a' //unicode for a
Source code: https://github.com/scala-exercises/exercises-stdlib/blob/master/src/main/scala/stdlib/LiteralStrings.scala
Page: https://www.scala-exercises.org/std_lib/literal_strings
The text was updated successfully, but these errors were encountered: