info symbol :string :word :literal :pathliteral :symbolliteral
Attributes
get
get information as dictionary
Returns
:dictionary
or :nothing
Examples
copy
info 'print
; |--------------------------------------------------------------------------------
; | print :function Io
; |--------------------------------------------------------------------------------
; | print given value to screen with newline
; |--------------------------------------------------------------------------------
; | usage print value :any
; |
; | options .lines -> print each value in block in a new line
; |
; | 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!]