Created
September 13, 2020 05:53
-
-
Save zamfi/61e075388f31a73358cb8553f44fe1f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var people = [ | |
| { | |
| name: "J.D. Zamfirescu", | |
| food: "宫保鸡丁", | |
| color: "blue" | |
| }, | |
| { | |
| name: "Adam Smith", | |
| food: "小笼包", | |
| color: "red" | |
| } | |
| ]; | |
| textAlign(CENTER); | |
| for (var i = 0; i < people.length; i += 1) { | |
| fill(0); | |
| textSize(15); | |
| text("❤️", width/2, height/2-10); | |
| textSize(40); | |
| text(people[i].name, width/2, height/2-30); | |
| fill(people[i].color); | |
| text(people[i].food, width/2, height/2+30); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment