Output of the default code in the app generates errors:
=================
Compiling playground v0.0.1 (/playground)
error: unexpected token: `...`
--> src/main.rs:13:15
|
13 | for x in 0...10 {
| ^^^
|
help: use `..` for an exclusive range
|
13 | for x in 0..10 {
| ^^
help: or `..=` for an inclusive range
|
13 | for x in 0..=10 {
| ^^^
error: aborting due to previous error
error: could not compile `playground`.
To learn more, run the command again with --verbose.
=================
error: unexpected token: `...` --> src/main.rs:13:15 | 13 | for x in 0...10 { | ^^^ | help: use `..` for an exclusive range | 13 | for x in 0..10 { | ^^ help: or `..=` for an inclusive range | 13 | for x in 0..=10 { | ^^^error: aborting due to previous error
error: could not compile `playground`.
To learn more, run the command again with --verbose.