export function* Range(start: number, count: number) {
  for (let i = 0; i < count; i++) {
    yield start + i;
  }
}
