now BigNumber is not depended on Arduino (platform preprocessing conditions added), auto scaling and BigNumber(long), BigNumber(long long), BigNumber(double), BigNumber(std::string), BigNumber(String), toLong(), toDouble() added
and if STD_INCLUDED defined you can use std::cout like that:
#include <BigNumber.h>
#include <iostream>
using namespace std;
int main() {
BigNumber a = 0;
cin >> a;
cout << a << endl;
}
now BigNumber is not depended on Arduino (platform preprocessing conditions added), auto scaling and BigNumber(long), BigNumber(long long), BigNumber(double), BigNumber(std::string), BigNumber(String), toLong(), toDouble() added and if
STD_INCLUDED
defined you can use std::cout like that: