HomeManualTopicsTypesSymbols

std::eprint

writes its arguments (as a single string) to the error output channel

Parameter

args*
the arguments to concatenate and print

Results

None

Description

The arguments are converted into a single string which is then converted into utf-8.

This function needs I/O-access rights.

Example

$name "Chloé" eprint! "Bonjour, " name "!@nl;"

Error output

Bonjour, Chloé!

Topic

Input-Output

See also

std::eprintln writes its arguments and a trailing newline to the error output channel
std::eprint_string writes its argument (a single string) to the error output channel
std::print writes its arguments (as a single string) to the standard output channel