stencilproject/Stencil

Does it support C for-loop or swift for-loop syntax?

diuming opened this issue · 1 comments

Does it support C for-loop or swift for-loop syntax?
thx!

C
for (i = 0; i < 10; i++) {
    for j = 0; j < 10; j++) {
        value = array[i*j]
    }
}

Swift
for i in 0..<10 {
    for j in 0..<10 {
         value = array[i*j]
    }
}

sorry! about that