Advertisement
ben5NL

2.6a

May 24th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. void setup()
  2. {
  3. size(400,400);
  4.  
  5. }
  6.  
  7. void draw()
  8.  
  9. {
  10.  
  11. background(127);
  12. fill(255,255,65);
  13. rect(60,60,60,60);
  14. rect(120,120,60,60);
  15. rect(180,180,60,60);
  16. rect(240,240,60,60);
  17.  
  18. fill(255,65,65);
  19. rect(120,180,60,60);
  20. rect(60,240,60,60);
  21. rect(180,120,60,60);
  22. rect(240,60,60,60);
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement