``` val a = Report(0,0) val b = a++ b == Report(1,...
# announcements
d
Copy code
val a = Report(0,0)
val b = a++
b == Report(1,0)
a == Report(0,0)