Sign in
dawn
/
tint
/
38f1e9c75c5c9f73b02bb82ec1e2e9611a554f9a
/
.
/
test
/
expressions
/
index
/
let
/
param
/
array.wgsl
blob: 12182e75be9d31dbc381dace9765126ab5b226ef [
file
] [
log
] [
blame
]
fn f
(
i
:
i32
)
->
i32
{
let
a
=
array
<
i32
,
8
>(
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
);
return
a
[
i
];
}