From 78cb9b9184040c61dbdf4303784982ab3638fa80 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Mon, 22 Aug 2016 02:48:09 +0200 Subject: Add Description --- roman.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roman.go b/roman.go index afcdbdd..b5886ba 100644 --- a/roman.go +++ b/roman.go @@ -1,5 +1,13 @@ // Package roman numerals // +// For fluff, the unicode overbar is recognized as a factor of 1000. +// +// If you see boxes in the code below, those are supposed to be the +// Unicode combining overline (U+0305) and look like I̅V̅X̅L̅C̅D̅M̅. Or, if +// you see overstruck combinations of letters, that's a different font +// rendering problem. (If you need roman numerals > 3999 reliably, it +// might best to stick to chiseling them in stone...) +// // Source: https://www.rosettacode.org/wiki/Roman_numerals/Encode#Go package roman -- cgit v1.2.3