Skip to content

counter in the loop should be local #1628

@letypequividelespoubelles

Description

The inner counter of the loop should be local, ie for the moment we can't write

for i:u8=0; i<10; i=i+1 {
   do stuff
}
for i:u8=0; i<10; i=i+1 {
   do some other stuff
}

we have to write:

for i:u8=0; i<10; i=i+1 {
   do stuff
}
for j:u8=0; j<10; j=j+1 {
   do some other stuff
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions