enum Compass {
  case north, south, east, west
}
let currentDirection = Compass.east
print(currentDirection)
auto px