Added note about single vs double quotes

This commit is contained in:
Dave Gauer 2021-04-17 17:05:16 -04:00
parent 284e90015f
commit 1355f550fb
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,9 @@
//
// const foo = [_]u8{ 'H', 'e', 'l', 'l', 'o' };
//
// Notice how individual characters use single quotes ('H') and
// strings use double quotes ("H"). These are not interchangeable!
//
const std = @import("std");
pub fn main() void {