mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-11 13:06:40 +03:00
10 lines
299 B
Text
10 lines
299 B
Text
![]() |
main:
|
||
|
local.array = makeArray
|
||
|
"line1" test1 3::4
|
||
|
"line2" test2 99::120
|
||
|
endArray
|
||
|
|
||
|
println ( local.array[ 1 ][ 1 ] + "::" + local.array[ 1 ][ 2 ] + "::" + local.array[ 1 ][ 3 ][ 1 ] )
|
||
|
println ( local.array[ 2 ][ 1 ] + "::" + local.array[ 2 ][ 2 ] + "::" + local.array[ 2 ][ 3 ][ 2 ] )
|
||
|
end
|