1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| [ "do", [ "def", "drawTriangle", [ "fn", ["left", "top", "right", "color"], [ "do", ["drawLine", "left", "top", "color"], ["drawLine", "top", "right", "color"], ["drawLine", "left", "right", "color"] ] ] ], ["consoleLine"], ["drawTriangle", {"x": 0, "y": 0}, {"x": 3, "y": 3}, {"x": 6, "y": 0}, "蓝色"], ["consoleLine"], ["drawTriangle", {"x": 6, "y": 6}, {"x": 10, "y": 10}, {"x": 6, "y": 16}, "红色"], ["consoleLine"] ]
|