help files
Z505 | PasWiki | FUQ | Search | Main Docs | API Guide



[Overview][Constants][Procedures and functions] Reference for unit 'pwumain' (#powtils_main)

OutA

Declaration

Source position: pwumain.pas line 132

procedure OutA(

  args: array [] of <NIL>

);

Notes

This function accepts multiple arguments containing many types (similar to writeln when using commas) without limiting the programmer to a single string parameter, as Out() or WebWrite() does.

Example

var 
  someint: integer = 400;
  somestring: string = ' testing';
begin
  OutA('text here ', ' and a number: ', 8674.313, ' and a boolean ', TRUE,  '<p>'); 
  OutA('A number: ', someint, ' and a string: ', somestring);
end.

// note: use square brackets around Array
// LufDoc needs to be fixed to show them





lufdoc, Powtils, fpc, freepascal, delphi, kylix, c/c++, mysql, cgi web framework docs, Z505