mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 09:08:03 +02:00
12 lines
265 B
ObjectPascal
12 lines
265 B
ObjectPascal
type TA = Array[1..2,1..2,1..2,1..2,1..2,1..2,1..2,1..2,1..2,1..2] of Byte;
|
|
|
|
var v,w: ta;
|
|
e: longint;
|
|
|
|
Begin
|
|
e :=1;
|
|
v[e,e,e,e,e,e,e,e,e,e] :=1;
|
|
w[e,e,e,e,e,e,e,e,e,v[e,e,e,e,e,e,e,e,e,e]] := v [e,e,e,e,e,e,e,e,e,e];
|
|
writeln(w[e,e,e,e,e,e,e,e,e,e])
|
|
end.
|