mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-08 03:27:58 +03:00
9 lines
299 B
Text
9 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
|