Skip to content

Instantly share code, notes, and snippets.

@jacobsapps
Created April 30, 2025 21:34
Show Gist options
  • Save jacobsapps/787ad8e4726a0e4cf7376855cb046bb2 to your computer and use it in GitHub Desktop.
Save jacobsapps/787ad8e4726a0e4cf7376855cb046bb2 to your computer and use it in GitHub Desktop.
struct Container {
private var backingString: String = "Hello"
var value: String {
get {
backingString
}
_modify {
yield &backingString
}
}
}
var container = Container()
container.value.append(", world")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment