9 lines
174 B
Plaintext
9 lines
174 B
Plaintext
[export] main = fn [cc(c)] () s32
|
|
{
|
|
>array: [_]s32 = [1, 3, 5];
|
|
>pointer: &s32 = &array[0];
|
|
>index: u64 = 0;
|
|
pointer[index] = 0;
|
|
return pointer[index];
|
|
}
|