How can we make use of this enumeration?

var d = Direction.northvar d: Direction
d = .north
var d = .northvar d = Direction

Good stuff! Initializing a variable with north requires the use of Direction.north; the dot syntax works only after d is declared.

Oh, snap! Initializing a variable with north requires the use of Direction.north; the dot syntax works only after d is declared.