nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/demos/d
Nico Jensen b59a203dbb Init
Init commit
2019-03-12 13:49:49 +01:00

16 lines
451 B
Text

import std.algorithm, std.conv, std.functional,
std.math, std.regex, std.stdio;
alias round = pipe!(to!real, std.math.round, to!string);
static reFloatingPoint = ctRegex!`[0-9]+\.[0-9]+`;
void main()
{
// Replace anything that looks like a real
// number with the rounded equivalent.
stdin
.byLine
.map!(l => l.replaceAll!(c => c.hit.round)
(reFloatingPoint))
.each!writeln;
}