BashClass
BashClass copied to clipboard
Declare for loop control variable
Enhanced syntax would look as follow:
// var int i; <--- No need to declare `i` here
for(var int i=0; i < 10; i=i+1) {
// body
}
Requirements:
- Modify the grammar
- Add corresponding bash code