mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
12 lines
199 B
C
12 lines
199 B
C
struct Node
|
|
{
|
|
int data[25];
|
|
};
|
|
|
|
|
|
struct Node hello(int name) {
|
|
struct Node x = {999, 1, 2, 3, 4, 5, 6, 7, 8, 9,
|
|
0, 1, 2, 3, 4, 5, 6, 7 ,8, 9,
|
|
1, 2, 3, 4, 5};
|
|
return x;
|
|
} |