size() test

void setup() {
  size();
  background(153);
}

void draw() {
  line(0, 0, width, height);
}