Skip to content

Commit

Permalink
[dart/en-en] Updated example 9: made 'i' variable non-final
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiyorimi authored Mar 10, 2020
1 parent 9e975a8 commit 2cbe4b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dart.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ var newExplicitLists = explicitList.toList() // Converts Iterable<E> to List<E>
/// supported features, starting with forEach,map and where.
var example9Array = const ["a", "b"];
example9() {
for (final i = 0; i < example9Array.length; i++) {
for (int i = 0; i < example9Array.length; i++) {
print("Example9 for loop '${example9Array[i]}'");
}
var i = 0;
Expand Down

0 comments on commit 2cbe4b5

Please sign in to comment.