diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-06-14 10:45:40 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-06-14 10:45:40 -0400 |
commit | f07615ef96564beb7b577ff207c418096651e548 (patch) | |
tree | 76cbb7155249046c8ff82981c07793ae8091cb44 | |
parent | 4b07f1db23290080ca7ca875da4f4c431bb9b75a (diff) | |
parent | e2e2c6280e6a271d1abaa6e82b1a01cd5b1147a3 (diff) | |
download | ziglings-f07615ef96564beb7b577ff207c418096651e548.tar.gz ziglings-f07615ef96564beb7b577ff207c418096651e548.tar.bz2 ziglings-f07615ef96564beb7b577ff207c418096651e548.tar.xz ziglings-f07615ef96564beb7b577ff207c418096651e548.zip |
Merge branch 'main' of github.com:ratfactor/ziglings into main
-rw-r--r-- | exercises/008_quiz.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/008_quiz.zig b/exercises/008_quiz.zig index eda66b8..309a8ae 100644 --- a/exercises/008_quiz.zig +++ b/exercises/008_quiz.zig @@ -13,7 +13,7 @@ pub fn main() void { // What is this nonsense? :-) const letters = "YZhifg"; - const x: u8 = 1; + const x: usize = 1; // This is something you haven't seen before: declaring an array // without putting anything in it. There is no error here: |