#include "svg.h"
void svg_begin(double width, double height) {
std::cout << "\n";
std::cout << "\n";
}
void show_histogram_svg(const std::vector& bins) {
svg_begin(400, 300);
svg_text(20, 20, std::to_string(bins[0]));
svg_end();
}
void svg_text(double left, double baseline, std::string text) {
std::cout << "anything you want";
}