# # for loop # decl int i j for (set i 0) (< i 5) (inc i) for (set j 0) (< j (int (+ i 1))) (inc j) out "*" console end for out endl console end for