1 2 3 4 5 6 7 8 9
global array function func(i) { array[i++] = 0; return i; } probe begin { printf ("i=%d\n", func(0)) exit () }