From 4e35a260432959fbfb2adad61bbfc3c173ae45dc Mon Sep 17 00:00:00 2001 From: MokeevNV Date: Thu, 1 May 2025 22:45:41 +0300 Subject: [PATCH] =?UTF-8?q?code:=205.svg(=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20?= =?UTF-8?q?=D0=B2=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 e66c587..b91797c 100644 --- a/main.cpp +++ b/main.cpp @@ -1,5 +1,6 @@ #include "histogram.h" #include "text.h" +#include "svg.h" using namespace std; @@ -29,5 +30,5 @@ Input input_data() { int main() { auto in = input_data(); auto bins = make_histogram(in.numbers, in.bin_count); - show_histogram_text(bins); + show_histogram_svg(bins); }