Prints a value to stdout.
Note that stdout always refers to the file descriptor 1.
( $ fmt : expr ) => { write ! ( :: std:: fd:: STDOUT , $ fmt ) } ; (
$ fmt : expr , $ ( $ arg : tt ) * ) => {
write ! ( :: std:: fd:: STDOUT , $ fmt , $ ( $ arg ) * ) } ;