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);
}
ORESoftware/iterable.int
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|