Intern — Middle
What result will program №20 output
livecode
Task condition
Determine what text will appear in the console after executing the following code:
func main() {
var resultStr string
for i := 0; i < 10; i++ {
resultStr += fmt.Sprintf("%d", i)
}
fmt.Println(resultStr)
}