Request for tuple unpacking syntax in for loops #1372
Labels
jaclang
Issues related to jac programming language
new feature/enhancement
Proposing a new feature or enhancement to existing feature.
Describe the feature you'd like
The current syntax for tuple unpacking in for loops in Jac does not support a format like
for (i, j) in apple {}
, which is needed for consistency with Python's syntax (for i, j in apple:
).Expected Outcome:
Implement support for tuple unpacking in for loops using a syntax similar to Python, enhancing the language's usability and consistency.
The text was updated successfully, but these errors were encountered: