Skip to content

ORESoftware/iterable.int

Repository files navigation

Travis build status: Build Status

CircleCI build status: CircleCI

import {IterableInt} from "iterable.int";

console.log('your simple typescript test goes here.');

console.log('/////////');
for(const v of new IterableInt(5)){
  console.log(v);
}

console.log('/////////');
for(const v of new IterableInt(-2,3)){
  console.log(v);
}

console.log('/////////');
for(const v of new IterableInt(5,0)){
  console.log(v);
}

console.log('/////////');
for(const v of new IterableInt(4,-3)){
  console.log(v);
}

console.log('/////////');
for(const v of new IterableInt(-4,-3)){
  console.log(v);
}

console.log('/////////');
for(const v of new IterableInt(-1,-0)){
  console.log(v);
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors