So here's a question (or yet another question to be more accurate here).

Is it possible to use multiple OUTPUT & HIGH statements on one line for example:

OUTPUT GPIO.0 GPIO.1 GPIO.2

As opposed to:

OUTPUT GPIO.0
OUTPUT GPIO.1
OUTPUT GPIO.2

Followed by:

HIGH GPIO.0 GPIO.1 GPIO.2

As opposed to:

HIGH GPIO.0
HIGH GPIO.1
HIGH GPIO.2

David