Read(Ln)/Write(Ln) routines |
Top Previous Next |
What is translated > Special RTL/VCL-functions > Read(Ln)/Write(Ln) routines
The Read(Ln)/Write(Ln) routines can be called in Delphi with an arbitrary number of arguments. Delphi2Cpp divides them into a series of function calls:
WriteLn('Hello ', name, '!');
becomes:
WriteLn( "Hello " ); WriteLn( name ); WriteLn( '!' );
|
This page belongs to the Delphi2Cpp Documentation |
Delphi2Cpp home Content |