8 lines
59 B
SourcePawn
8 lines
59 B
SourcePawn
|
public main()
|
||
|
{
|
||
|
char x[40];
|
||
|
any y[10];
|
||
|
x = y;
|
||
|
y = x;
|
||
|
}
|