The task is to encode:
List(1,2,3)
to the the following string:
[1,2,3]
By applying io.circe.asJson – function:
List(1,2,3).asJson
I receive the following output:
[
1,
2,
3
]
What am I doing wrong?
The task is to encode:
List(1,2,3)
to the the following string:
[1,2,3]
By applying io.circe.asJson – function:
List(1,2,3).asJson
I receive the following output:
[
1,
2,
3
]
What am I doing wrong?