global i := 0
global n := 5
//inc
global i,n
i := mod(i+1, n)
//dec
global i,n
i := mod(i+(n-1), n)