suffix

add given suffix to string


Parameters

suffix string :string :literal
       suffix :string

Returns

  • :string
  • or  :nothing

Examples

copy
suffix "hell" "o" ; => "hello"

copy
str: "hell" suffix 'str ; str: "hello"

Related