Global A = 5 PP(B(),B(),B(),B(),B()) WaitKey() End Function PP(C,D,E,F,G) Print C Print D Print E Print F Print G End Function Function B() a=a-1 Return a End Function
output:
0
1
2
4
3
1
2
4
3
I was under the assumption that functions evaluate their argument from right to left... For the most part that is the case with the exception of the last two...