Skip to content

Instantly share code, notes, and snippets.

@Hejsil
Created November 5, 2018 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hejsil/141d1433a64a3495636453860cee3abd to your computer and use it in GitHub Desktop.
Save Hejsil/141d1433a64a3495636453860cee3abd to your computer and use it in GitHub Desktop.
const std = @import("std");
pub fn main() !void {
var stdout_file = try std.io.getStdOut();
var stdout_stream = stdout_file.outStream();
const stdout = &stdout_stream.stream;
try stdout.print("Hello, {}!\n", "Bob");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment