diff --git a/main.cpp b/main.cpp index b02a3dd..7ae72b6 100644 --- a/main.cpp +++ b/main.cpp @@ -2,6 +2,8 @@ #include #include "histogram.h" #include "text.h" +#include "svg.h" + using namespace std; @@ -44,7 +46,7 @@ int main(){ auto bins = make_histogram(in.numbers, in.bin_count); - show_histogram_text(bins); + show_histogram_svg(bins); }