diff --git a/laba01upd3.cpp b/laba01upd3.cpp index 2abf415..36a2b27 100644 --- a/laba01upd3.cpp +++ b/laba01upd3.cpp @@ -5,6 +5,8 @@ #include "text.h" #include +#include + using namespace std; struct Input { @@ -34,10 +36,15 @@ Input input_data(istream& in, bool prompt) { int main() { + curl_global_init(CURL_GLOBAL_ALL); + + + auto in = input_data(cin, true); auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins); show_histogram_text(bins); + return 0; }