Pls is this one the right usage of `with` ? ```f...
# getting-started
z
Pls is this one the right usage of
with
?
Copy code
fun Date.add(calendarUnit: Int, amount:Int): Date = with(java.util.Calendar.getInstance()){
    add(calendarUnit,amount)
    return time
}