-
Notifications
You must be signed in to change notification settings - Fork 1
example basic example
gnaggnoyil edited this page Oct 1, 2016
·
6 revisions
#include <stdexcept>
#include <iostream>
#include "BigNum.hpp"
using namespace bignum;
int main(){
bigint_t x = 114514_bigint;
bigint_t y = x << 334;
std::cout << std::hex << y << std::endl;
return 0;
}