print info for given symbol
Parameters
info symbol :string :literal :symbolliteral
Attributes
get | | get information as dictionary |
Returns
Examples
copy
info 'print
; |--------------------------------------------------------------------------------
; | print :function 0x1028B3410
; |--------------------------------------------------------------------------------
; | print given value to screen with newline
; |--------------------------------------------------------------------------------
; | usage print value :any
; |
; | returns :nothing
; |--------------------------------------------------------------------------------
copy
info '++
; |--------------------------------------------------------------------------------
; | append :function 0x107555A10
; | alias ++
; |--------------------------------------------------------------------------------
; | append value to given collection
; |--------------------------------------------------------------------------------
; | usage append collection :char :string :literal :block
; | value :any
; |
; | returns :string :block :nothing
; |--------------------------------------------------------------------------------
copy
print 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!]
Related