Skip to content
angerangel edited this page Mar 19, 2013 · 1 revision

USAGE

   PRINTF fmt val

DESCRIPTION

Formatted print.

PRINTF is a function value.

ARGUMENTS

  • fmt -- Format
  • val -- Value or block of values

#SOURCE

printf: make function! [  [
    "Formatted print."
    fmt "Format"
    val "Value or block of values"
][
    print format :fmt :val
] ]
Clone this wiki locally