Help for this page
// This is C++ void f() { ... ... g(++myvar); // Incremented on every call }
sub f { our $myval; ... ... g(++$myval); }