awestlake87 / helix

Compiler for Meta Programming Language
GNU General Public License v3.0
1 stars 0 forks source link

repeated args #61

Open awestlake87 opened 7 years ago

awestlake87 commented 7 years ago
fun int sum(int... nums)
    sum = 0

    each n in nums
        sum += n

    return sum