Made correction in the output of println function when it prints an integer string. (#27034)

This commit is contained in:
Sunny
2019-05-16 12:19:24 +05:30
committed by The Coding Aviator
parent 522c682971
commit 719227b733

View File

@ -258,7 +258,7 @@ println(9 + 10)
Output:
```shell
"910"
910 // Here 910 is a string value.
19
```