diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-03-05 12:38:04 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-03-05 12:38:04 -0500 |
commit | 830109128d71a528b1ce3762fc489264f09d4419 (patch) | |
tree | d704e46c2690a4130a3b8d147823a08ccc728c72 /exercises/51_values.zig | |
parent | 0f04860ac07ac03edf758607d343afa672bf25d4 (diff) | |
download | ziglings-830109128d71a528b1ce3762fc489264f09d4419.tar.gz ziglings-830109128d71a528b1ce3762fc489264f09d4419.tar.bz2 ziglings-830109128d71a528b1ce3762fc489264f09d4419.tar.xz ziglings-830109128d71a528b1ce3762fc489264f09d4419.zip |
ex51 cleaned up wording
Diffstat (limited to 'exercises/51_values.zig')
-rw-r--r-- | exercises/51_values.zig | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/exercises/51_values.zig b/exercises/51_values.zig index 3038ade..bb0c98e 100644 --- a/exercises/51_values.zig +++ b/exercises/51_values.zig @@ -8,13 +8,12 @@ // ALL OF THIS RELATE TO THE DATA IN OUR ZIG PROGRAMS? LET'S HEAD // BACK UP TO THE TEXT EDITOR AND FIND OUT. // -// (Conversational) Ah, that's better. Now we can look at some -// familiar Zig code! +// Ah, that's better. Now we can look at some familiar Zig code. // // @import() adds the imported code to your own. In this case, -// compiled code from the standard library is compiled in with your -// program. It is loaded into RAM with the code you write when it -// runs. And that thing we give a const name? That's a struct! +// compiled code from the standard library is added to your program. +// It is loaded into RAM with the code you write when it runs. And +// that thing we give a const name? That's a struct! const std = @import("std"); |