14 lines
205 B
Text
14 lines
205 B
Text
|
|
extern mod extra;
|
||
|
|
use extra::bigint::BigUint;
|
||
|
|
use std::num::One;
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
let one: BigUint = One::one();
|
||
|
|
let mut i: BigUint = One::one();
|
||
|
|
|
||
|
|
loop {
|
||
|
|
println!("{:s}", i.to_str());
|
||
|
|
i = i + one;
|
||
|
|
}
|
||
|
|
}
|