From 8702bd1bc25a1427ea756bc84f4c643dd31a2cf1 Mon Sep 17 00:00:00 2001 From: LiTekho Date: Sun, 28 May 2023 12:36:09 +0300 Subject: [PATCH] =?UTF-8?q?build:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE=20svg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }