/* * main.cpp * * This file is covered by the LICENSE file in the root of this project. */ #include #include "bigintmandelwidget.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); BigintMandelWidget w; w.show(); return a.exec(); }