Skip to content

Instantly share code, notes, and snippets.

@aconbere
Created March 16, 2021 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aconbere/f2878f7c9a1c5ab405853f582bf03eb5 to your computer and use it in GitHub Desktop.
Save aconbere/f2878f7c9a1c5ab405853f582bf03eb5 to your computer and use it in GitHub Desktop.
test "test fixed sized array" {
var check: [2]u8 = [2]u8{ 'H', 'T' };
testing.expect(mem.eql(u8, check[0..1], "HT"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment