EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

str.out4

Output a 32-bit value. The value is appended at the end of the string.

method str str.out4 (
   str format,
   uint val
)

Parameters

format The format of the output. It is the same as in the function 'printf' in C programming language.
val 32-bit value to be appended.

Return value

Returns the object which method has been called.


str.out8

Output a 64-bit value. The value is appended at the end of the string.

method str str.out8 (
   str format,
   ulong val
)

Parameters

format The format of the output. It is the same as in the function 'printf' in C programming language.
val 64-bit value to be appended.

Return value

Returns the object which method has been called.

Related links

Source