code: исправление кода

Этот коммит содержится в:
2024-04-24 16:40:28 +03:00
родитель b3e696cc70
Коммит 2223e6c910

Просмотреть файл

@@ -2,6 +2,8 @@
#include <vector> #include <vector>
#include "histogram.h" #include "histogram.h"
#include "text.h" #include "text.h"
#include "svg.h"
using namespace std; using namespace std;
@@ -44,7 +46,7 @@ int main(){
auto bins = make_histogram(in.numbers, in.bin_count); auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_text(bins); show_histogram_svg(bins);
} }