statement_while.sol 116 B

1234567
  1. contract Foo {
  2. function foo(uint256 n) public {
  3. while (n >= 10) {
  4. n -= 9;
  5. }
  6. }
  7. }