1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-04 16:46:04 +02:00

Revert syntax demo, add note

So as to not overwhelm the reader with syntax that is unseen up to this point, use the original demonstration, but add an explanatory note hinting that there is more to the semantics of string literals than shown.
This commit is contained in:
InKryption 2022-02-22 02:21:22 +01:00 committed by GitHub
parent 2699a3c21d
commit ec356407f1
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,9 +7,11 @@
//
// const foo = "Hello";
//
// Is the same as:
// Is almost* the same as:
//
// const foo = &[_:0]u8{ 'H', 'e', 'l', 'l', 'o' };
// const foo = [_]u8{ 'H', 'e', 'l', 'l', 'o' };
//
// (* We'll see what Zig strings REALLY are in Exercise 77.)
//
// Notice how individual characters use single quotes ('H') and
// strings use double quotes ("H"). These are not interchangeable!