Skip to content

Instantly share code, notes, and snippets.

@jacobsapps
Created September 29, 2025 09:48
Show Gist options
  • Select an option

  • Save jacobsapps/ef3b1fa36f015148fbc16a8d9c513f6b to your computer and use it in GitHub Desktop.

Select an option

Save jacobsapps/ef3b1fa36f015148fbc16a8d9c513f6b to your computer and use it in GitHub Desktop.
actor MyActor {
var count = 0
func increment() -> Int {
count += 1
return count
}
}
let myActor = MyActor()
await myActor.increment()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment