FUNCTION GiveFive() RETURN 5 FUNCTION AddOne(n) RETURN n + 1 FUNCTION CountTo3() LOCAL i, sum := 0 FOR i := 1 TO 3 sum := sum + i NEXT RETURN sum