Skip to content

Instantly share code, notes, and snippets.

@zamfi
Created September 13, 2020 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zamfi/5cced2af5d2cdcbb0a0a6b9dfe7fd831 to your computer and use it in GitHub Desktop.
Save zamfi/5cced2af5d2cdcbb0a0a6b9dfe7fd831 to your computer and use it in GitHub Desktop.
var jd = {
name: "J.D. Zamfirescu",
food: "宫保鸡丁",
color: "blue"
};
textAlign(CENTER);
fill(0);
textSize(15);
text("❤️", width/2, height/2-10)
textSize(40);
text(jd.name, width/2, height/2-30);
fill(jd.color);
text(jd.food, width/2, height/2+30);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment