日本語 | English |
---|
日本語版はこちらにあります
Repunit Generation Library
This crate is a library, so it can't be installed with cargo install
.
If you use this in your application, add these lines in Cargo.toml
:
rust
[dependencies]
repunit
rust
extern crate repunit;
rust
repunit::convert(digits)
rust
repunit::restore(Repunit)
```rust extern crate repunit; fn main() { println!("{}",repunit::convert(repunit::restore(111111))); }
// => 111111
rust
extern crate repunit;
fn main() {
println!("{}", 3 * repunit::convert(4));
}
// => 3333 ```
To install this library onto your local machine, run cargo install --path .
. To release a new version, update the version number in Cargo.toml
, and then run cargo build --release
, which will create a git tag for the version, push git commits and the created tag.
Bug reports and pull requests are welcome on GitHub at https://github.com/NSK-1010/rust-repunit.
The gem is available as open source under the terms of the MIT License.