user.sol 138 B

12345
  1. struct User { string name; uint count; }
  2. function clear_count(User memory user) {
  3. user.count = 0;
  4. }
  5. using {clear_count} for User global;