This commit is contained in:
Adam Millerchip 2022-01-02 20:40:08 +09:00
parent 09d95042cb
commit 056e2fa1ca
1 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,6 @@ pub fn main() void {
//
// = .{'h', 'e', 'l', 'l', 'o'};
//
const hello = .{'h', 'e', 'l', 'l', 'o'};
const hello: [5]u8 = .{ 'h', 'e', 'l', 'l', 'o' };
print("I say {s}!\n", .{hello});
}