> For the complete documentation index, see [llms.txt](https://hopemoore.gitbook.io/coding-for-creatives-spring-2021/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hopemoore.gitbook.io/coding-for-creatives-spring-2021/templates-and-shortcuts/start-codes/processing-start-code.md).

# Processing Start Code

Without a set canvas size, a default one will appear.

```java
// Runs once on first frame
void setup() { 
    size(400, 400);          // Creates a 400 x 400 pixel canvas
}


// Runs every frame
void draw() {

}
```

Printing information in the console:

```java
println("I'm a message!");  
```
