class Fission::UI

def output_printf(string, key, value)

Returns nothing.

ui.output_printf "%s %s\n", 'foo', bar

Examples

value - The String for the second data item.
key - The String for the first data item.
string - The printf String.

are two data items.
method will be called on the stdout object. Currently, this assuems there
Internal: Outputs the specified arguments printf style. The 'printf'
def output_printf(string, key, value)
  @stdout.send :printf, string, key, value
end