mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
13 lines
266 B
Nim
13 lines
266 B
Nim
discard """
|
|
cmd: "nimrod $target --hints:on -d:embedUnidecodeTable $options $file"
|
|
output: "Ausserst"
|
|
"""
|
|
|
|
import unidecode
|
|
|
|
loadUnidecodeTable("lib/pure/unidecode/unidecode.dat")
|
|
|
|
#assert unidecode("\x53\x17\x4E\xB0") == "Bei Jing"
|
|
echo unidecode("Äußerst")
|
|
|