Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aataraxiaa/9d9e0dd470893ecc04cd2786b187a722 to your computer and use it in GitHub Desktop.
Save aataraxiaa/9d9e0dd470893ecc04cd2786b187a722 to your computer and use it in GitHub Desktop.
actor GoodActor {
var count: Int = 0
let limit = 5
func displayAndUpdate() {
guard count < 5 else {
return
}
print("Message \(count)")
count+=1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment