5 lines
101 B
Text
5 lines
101 B
Text
def main(field a) -> field[4] {
|
|
u32 SIZE = 4;
|
|
field[SIZE] res = [a; SIZE];
|
|
return res;
|
|
}
|