Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Call third-party package
- extern crate num;
- use num::bigint::ToBigInt;
- fn main() {
- let x = 2.to_bigint().unwrap();
- println!("{}", num::pow(x, 100));
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement