Increment increments an internal counter, returning the new value.
fn increment(env: soroban_sdk::Env) -> u32
Decrement decrements an internal counter, returning the new value.
fn decrement(env: soroban_sdk::Env) -> u32
Reset resets the counter to zero.
fn reset(env: soroban_sdk::Env)
Get the current count.
fn get_count(env: soroban_sdk::Env) -> u32