Non-decimal radices/Convert: Difference between revisions

Content added Content deleted
m (add RPL)
m (→‎{{header|Wren}}: Minor tidy)
Line 3,737: Line 3,737:
{{libheader|Wren-fmt}}
{{libheader|Wren-fmt}}
The methods Conv.itoa and Conv.atoi in the above module provide the required functionality.
The methods Conv.itoa and Conv.atoi in the above module provide the required functionality.
<syntaxhighlight lang="ecmascript">import "/fmt" for Conv
<syntaxhighlight lang="wren">import "./fmt" for Conv


System.print(Conv.itoa(26, 16))
System.print(Conv.itoa(26, 16))