1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-16 21:07:56 +00:00

Added missing C-file.

This commit is contained in:
jespergravgaard 2020-09-28 00:10:47 +02:00
parent b02215e723
commit abb12deed9

View File

@ -0,0 +1,9 @@
// Demonstrates a problem with inner indexes into arrays where the elemt size>1
unsigned int v[5];
unsigned int x[5];
void main() {
for(char i=0;i<5;i++)
x[i] += ( v[i] += 5 );
}