Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created November 9, 2025 07:34
Show Gist options
  • Select an option

  • Save skydoves/b3f472b2c5d1678793d047ec4d5779fd to your computer and use it in GitHub Desktop.

Select an option

Save skydoves/b3f472b2c5d1678793d047ec4d5779fd to your computer and use it in GitHub Desktop.
example
// Before (stable)
data class User(val name: String, val age: Int)
// After (unstable)
data class User(var name: String, var age: Int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment