Swift 5 func pour augmenter le nombre à chaque fois

var n = 0

func increment(){
  n++
  return n
}
Stormy Salamander