This commit is contained in:
gingerBill
2021-04-13 19:23:12 +01:00
parent ebed29fc09
commit 8e1120bc09

View File

@@ -133,7 +133,7 @@ has_suffix :: proc(array: $T/[]$E, needle: T) -> bool where intrinsics.type_is_c
return false;
}
fill :: proc(array: $T/[]$E, value: T) {
fill :: proc(array: $T/[]$E, value: E) {
for _, i in array {
array[i] = value;
}