Logo

Programming-Idioms

History of Idiom 59 > diff from v14 to v15

Edit summary for version 15 by :

Version 14

2015-08-22, 21:24:07

Version 15

2015-08-23, 10:41:42

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").

Imports
import "dart:io";
Code
stderr.write("$x is negative");
Doc URL
https://api.dartlang.org/apidocs/channels/stable/dartdoc-viewer/dart:io#id_stderr