Этот коммит содержится в:
2023-05-28 12:36:09 +03:00
родитель 53b7980790
Коммит 8702bd1bc2

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

@@ -5,6 +5,7 @@
#include <fstream>
#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;
}