Search Apps Documentation Source Content File Folder Download Copy Actions Download

cbhost.gno

0.13 Kb · 10 lines
 1package cbhost
 2
 3var counter = 0
 4
 5func IncrWithCallback(cb func()) {
 6	cb()
 7	counter++
 8}
 9
10func GetCounter() int { return counter }