Sha256: 1e29a55275cb80f300023f00b2710fdd5a6090ee8c1eb6f17a7c80205f1fc5e2
Contents?: true
Size: 392 Bytes
Versions: 396
Compression:
Stored size: 392 Bytes
Contents
create or replace package numeral# is function to_roman ( i_num pls_integer ) return varchar2; end numeral#; / create or replace package body numeral# is function to_roman ( i_num pls_integer ) return varchar2 is begin return trim(to_char(i_num, 'RC')); end to_roman; end numeral#; /
Version data entries
396 entries across 396 versions & 1 rubygems