flofriday / Moose

🐐 A new fun programming language
MIT License
6 stars 1 forks source link

For each loop should unwrap tuples #32

Closed Jozott00 closed 1 year ago

Jozott00 commented 1 year ago

Example:

list = [(1,"String"),(2,"Test")]

for (num, str) in list {
  ...
}