The following is a valid µOCCAM program. This just test procedure declarations and calls and some variable scope.
/public/cs3/web/ipptests/procedure-test.accept
INT x: INT y: INT result: PROC power (INT mantissa, INT exponent) SEQ i = 0 FOR exponent result := (result * mantissa) : SEQ x := 2 y := 3 power (x, y) x := result STOP