Rust library for finding out how many loops there are in a given string of digits
Inspired by this puzzle found somewhere on Facebook:
```rust use digit_loops;
digitloops::numberofloopsin_number("8888"); // => 8 ```