sacalon / sacalon

Sacalon is a general purpose and open source programming language designed to build optimal, maintainable, reliable and efficient software.

Home Page:https://sacalon.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Todo: builtin range function

bistcuite opened this issue · comments

commented

Python-like builtin range function:

function main() : int {
    for i in range(0,10){
         print(i)
    }
    return 0
}

That prints 1 to 10.

#63