diff --git a/README.md b/README.md index e7854b9..b11a418 100644 --- a/README.md +++ b/README.md @@ -61,4 +61,5 @@ import Humanize: digitsep digitsep(12345678) # "12,345,678" digitsep(12345678, seperator= "'") # "12'345'678" digitsep(12345678, seperator= "-", per_separator=4) # "1234-5678" -``` \ No newline at end of file +digitsep(12345678, seperator= "_") # Note 12_345_678 is a legal value in Julia source code, Meta.parse will parse such, while parse doesn't. +```