Logo

Programming-Idioms

History of Idiom 59 > diff from v4 to v5

Edit summary for version 5 by :

Version 4

2015-05-06, 21:04:51

Version 5

2015-07-31, 20:48:02

Idiom #59 Write to standard error stream

Print the message "x is negative" to standard error (stderr), with integer x value substitution (e.g. "-2 is negative").

Idiom #59 Write to standard error stream

Print the message "x is negative" to standard error (stderr), with integer x value substitution (e.g. "-2 is negative").

Code
print STDERR "$x is negative";