Hello world/Newline omission: Difference between revisions

m (The code already fits the task)
Line 1,265:
<lang zkl>print("Goodbye, World!");
Console.write("Goodbye, World!");</lang>
 
=={{header|Zig}}==
{{works with|Zig|0.7.0}}
<lang Zig>
const std = @import("std");
 
// return type is Error Union type.
// it will return an inferred error set or void data type:
pub fn main() !void {
const stdout = std.io.getStdOut().writer();
try stdout.print("Goodbye, {s}", .{"World!"}); // anonymous struct literal used for string substitution
}
</lang>
 
=={{header|ZX Spectrum Basic}}==