Hello world/Standard error: Difference between revisions

(→‎{{header|Zig}}: Split comment into separate example, annotate working versions.)
 
(2 intermediate revisions by 2 users not shown)
Line 535:
 
=={{header|Julia}}==
 
Julia 0.7 or newer:
 
<syntaxhighlight lang="julia">println(stderr, "Goodbye, World!")</syntaxhighlight>
 
In versions prior to Julia 0.7, the standard I/O streams were capitalized:
 
<syntaxhighlight lang="julia">println(STDERR, "Goodbye, World!")</syntaxhighlight>
 
Line 546 ⟶ 553:
 
=={{header|langur}}==
<syntaxhighlight lang="langur">writelnErr "goodbyeGoodbye, peopleworld."</syntaxhighlight>
 
=={{header|Lasso}}==
Line 1,240 ⟶ 1,247:
 
=={{header|Wren}}==
<syntaxhighlight lang="ecmascriptwren">Fiber.abort("Goodbye, World!")</syntaxhighlight>
 
=={{header|X86 Assembly}}==
889

edits