``` Person( name = run { // some complic...
# language-proposals
p
Copy code
Person(
    name = run {
      // some complicated things
      "Nathan"
    },
    
    age = run {
      // some complicated things
      17
    }
)
🤔 2
k
If only we had secondary names for function parameters 😛
🧌 2