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 II divides them into a series of function calls:
WriteLn('Hello ', name, '!');
becomes:
WriteLn( "Hello " ); WriteLn( name ); WriteLn( '!' );
|
This page belongs to the DelphiXE2Cpp11 Documentation |
DelphiXE2Cpp11 home Content |