1
1
Fork 0
AtomicKotlinCourse/Power Tools/Property Delegation/Exercise 2/task.md

5 lines
233 B
Markdown
Raw Normal View History

## Property Delegation (#2)
Starting with `Add.kt`, add a `setValue()` extension function to `Sum` that
assigns its `value` argument to `a` in `Add` (change `Add` to make this work).
The starter code in `main()` tests your solution.