xxxxxxxxxx
import std;
void main()
{
auto arr = [1, 2, 3, 4, 5];
writeln(arr.retro()[0 .. 2]); //5,4
}