BigBadE / Raven-Language

An experimental language
MIT License
4 stars 15 forks source link

[BUG] Fix for loops #26

Closed BigBadE closed 9 months ago

BigBadE commented 1 year ago

Describe the bug For loops are currently broken in the parser

Raven Code To Reproduce

import stdio;

fn main() {
    for i in 0..5 {
        printf("Test!");
    }
}