Skip to content
New issue

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

Update Formatting.scala #147

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/scala/stdlib/Formatting.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ object Formatting extends FlatSpec with Matchers with org.scalaexercises.definit
*/
def escapeSequenceFormatting(res0: String, res1: String, res2: String, res3: String) {
val c = '\u0061' //unicode for a
val d = '\141' //octal for a
val e = '\"'
val d = '\141' //octal for a; not supported in scala 2.13.0, use '\u0061' instead
val e = '\"' // can also be specified as '"' (there is no need to escape the double quote)
val f = '\\'

"%c".format(c) should be(res0)
Expand Down