Something like `val atomicInt = AtomicInteger(0) /...
# announcements
k
Something like
val atomicInt = AtomicInteger(0) // 0 being an initial value
Then passing it to your functions, you can easily do
atomicInt.set(10)
and get the actual int value with
atomicInt.get()