mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 22:50:18 +00:00
9 lines
194 B
Plaintext
9 lines
194 B
Plaintext
|
import "builtin.aqua"
|
||
|
|
||
|
func joinIdxLocal(idx: i16, nodes: []string) -> []string:
|
||
|
nodes2: *string
|
||
|
for node <- nodes par:
|
||
|
nodes2 <<- node
|
||
|
join nodes2[idx], nodes
|
||
|
<- nodes2
|