mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 13:21:07 +01:00
7 lines
74 B
Plaintext
7 lines
74 B
Plaintext
int[] a = new int[] {
|
|
1, 2, 3, 4, 5
|
|
};
|
|
for (int i: a) {
|
|
print(i);
|
|
}
|