Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParameterTypeRequiredDescription
arabic numberNumberYesThe arabic Arabic numeral you want converted.

Return type

string


Example

Code Block
string a = roman(7);
print("a= " + a);
string b = roman(2034);
print("b= " + b);

...