- :any
from
get value from string, using given representation
Parameters
from value :string :literal
Attributes
binary | get integer from binary representation | |
hex | get integer from hexadecimal representation | |
octal | get integer from octal representation | |
opcode | get opcode by from opcode literal |
Returns
Examples
copyprint from.binary "1011" ; 11 print from.octal "1011" ; 521 print from.hex "0xDEADBEEF" ; 3735928559
copyfrom.opcode 'push1 => 33