Перенос страниц

This commit is contained in:
Alexander Zhirov 2023-03-05 15:30:34 +03:00
parent 4d57446057
commit 4c954c9186
129 changed files with 14 additions and 15 deletions

View file

@ -0,0 +1,13 @@
import std.stdio;
void main()
{
auto array1 = new short[55];
assert(array1.length == 55);
writeln(array1);
auto array2 = new int[10];
array2[9] = 42;
assert(array2[$ - 1] == 42);
writeln(array2);
}