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