Skip to content

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;
}
Clone this wiki locally