master
 1const print = @import("std").debug.print;
 2
 3const a_number: i32 = 1234;
 4const a_string = "foobar";
 5const fmt = "here is a string: '{s}' here is a number: {}\n";
 6
 7pub fn main() void {
 8    print(fmt, .{ a_string, a_number });
 9}
10
11// exe=succeed