diff --git a/main.cpp b/main.cpp index 3575dcb..c87db5e 100644 --- a/main.cpp +++ b/main.cpp @@ -5,6 +5,7 @@ #include #include "histogram.h" #include "text.h" +#include "svg.h" using namespace std; const size_t SCREEN_WIDTH = 80; @@ -43,7 +44,7 @@ int main() auto bins = make_histogramm(in.numbers, in.bin_count); - show_histogramm(bins); + show_histogram_svg(bins); return 0; }