- :dictionary
- or :nothing
info
print info for given symbol
Parameters
info symbol :string :literal :symbolliteral
Attributes
get | get information as dictionary |
Returns
Examples
copyinfo 'print ; |-------------------------------------------------------------------------------- ; | print :function 0x1028B3410 ; |-------------------------------------------------------------------------------- ; | print given value to screen with newline ; |-------------------------------------------------------------------------------- ; | usage print value :any ; | ; | returns :nothing ; |--------------------------------------------------------------------------------
copyinfo '++ ; |-------------------------------------------------------------------------------- ; | append :function 0x107555A10 ; | alias ++ ; |-------------------------------------------------------------------------------- ; | append value to given collection ; |-------------------------------------------------------------------------------- ; | usage append collection :char :string :literal :block ; | value :any ; | ; | returns :string :block :nothing ; |--------------------------------------------------------------------------------
copyprint info.get 'print ; [name:print address:0x1028B3410 type::function module:Io args:[value:[:any]] attrs:[] returns:[:nothing] description:print given value to screen with newline example:print "Hello world!" ; Hello world!]