def figure_s1(sz: Int) { if (sz < 200) { setPenColor(color(256 - sz, 0, sz)) forward(10); left(100-sz) figure_s1(sz + 2) } } clear; figure_s1(10)