Quick actions

cmd+k|ctrl+k

Navigation

Languages

why it wont execute closure?!?!

Snippet info

Language

Groovy

Visibility

public

Author

orochi-100

Created

2022-03-15T15:02:11.6033Z

Updated

2022-03-15T15:02:38.744653Z

def num = Integer.MAX_VALUE.toBigInteger() + 20_000
println num

def counter = 0

num.times {
    counter++
}

println(counter)
INFO