1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-05 01:56:03 +02:00

Update 052_slices.zig

This commit is contained in:
Dave Gauer 2021-08-30 17:55:32 -04:00 committed by GitHub
parent 63f25f7a73
commit 79b92d15b8
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@
// first item at x and the last item at y-1. You can leave the y
// off to get "the rest of the items".
//
// Notice that the type of a slice on an array of u8 items is []u8.
// The type of a slice on an array of u8 items is []u8.
//
const std = @import("std");