Clarification in description for ranges in loops.

This commit is contained in:
Chris Boesch 2024-08-11 16:29:14 +02:00
parent e2f356d95c
commit 17f9312034
No known key found for this signature in database
GPG key ID: 8712DF4D3E364668

View file

@ -28,7 +28,7 @@
// 0..10 is a range from 0 to 9 // 0..10 is a range from 0 to 9
// 1..4 is a range from 1 to 3 // 1..4 is a range from 1 to 3
// //
// At the moment, ranges are only supported in 'for' loops. // At the moment, ranges in loops are only supported in 'for' loops.
// //
// Perhaps you recall Exercise 13? We were printing a numeric // Perhaps you recall Exercise 13? We were printing a numeric
// sequence like so: // sequence like so: