// Test array valued indexes

proc main()
{
    var str = "H e l l o";
    var str1;

    str1 = str[ 2*(5 .iterate()) ];
    say(str1, "\n");
}