You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there are two structures for the ForLoop statement:
// `for var in 0..10 { <body> }`ForLoop{var:Ident,range:Range,body:Vec<Stmt>,},// `for item in vec { <body> }`IteratorLoop{var:Ident,iterator:Box<Expr>,body:Vec<Stmt>,},
It would be nicer and safer to merge them into one (#169 (comment))
Currently there are two structures for the
ForLoop
statement:It would be nicer and safer to merge them into one (#169 (comment))
The text was updated successfully, but these errors were encountered: