// 6.914, Example 0.1 // This is a very simple program. In fact, right now it just makes a blank window. // You can use comments (like we're doing now) to make your code readable // for you and future users, or to help you remember things, or to help // simplify your work while you're debugging. /* Here's another way to write comments. They can go in multiline blocks like this. */ void setup(){ size(800, 100); // this line makes a new window. // window size will be 800 (width) x 100 (height.) }