fillOne method

void fillOne()

Implementation

void fillOne() {
  h[0] = Int32.one;
  for (int i = 1; i < 10; i++) {
    h[i] = Int32.zero;
  }
}