Skip to content

Instantly share code, notes, and snippets.

Created August 31, 2017 00:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/ce7519e0ba22b6136a52a78ce247354c to your computer and use it in GitHub Desktop.
Save anonymous/ce7519e0ba22b6136a52a78ce247354c to your computer and use it in GitHub Desktop.
void setup () {
background (0);
size (800,600);
noLoop ();}
void draw ()
{ seizeTheMeansOfProduction ();
}
void seizeTheMeansOfProduction () {
fill (255,0,0);
rect ( 100, 50, 400, 300);
fill (255);
text ("communism", 350, 300);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment