blob: 3033f5438ee985c1d3d705a6e2293595846f1a9a [file] [log] [blame]
#include "bits.h"
int main(int argc, char **argv) {
typedef uint256 BitType;
BitType X = -1;
printf("uint256 X = -1 -> ");
printBits(X);
printf("\n");
return (int) X;
}