Non-decimal radices/Input: Difference between revisions

Added Arturo implementation
(Added 11l)
(Added Arturo implementation)
Line 124:
There is no built in support for generic base parsing.<br>
Please see [[Number base conversion#AutoHotkey|Number base conversion]]<br>
 
=={{header|Arturo}}==
 
<lang rebol>print to :integer "10" ; 10
 
print from.hex "10" ; 16
print from.octal "120" ; 80
print from.binary "10101" ; 21</lang>
 
{{out}}
 
<pre>10
16
80
21</pre>
 
=={{header|BBC BASIC}}==
1,532

edits