RosettaCodeData/Task/Roman-numerals-Encode/Phix/roman-numerals-encode-2.phix

6 lines
116 B
Text
Raw Permalink Normal View History

2024-03-06 22:25:12 -08:00
with javascript_semantics
requires("1.0.5")
function toRoman(integer n)
return {n,sprintf("%R",n)}
end function