In php you can do stuff like this:
$string = "abcde";
$a = $string[0];
But its not working in zephir. What is best way to select first letter in string ? substr(string,0,1) or something else ?
Also it would be great if optimizer could figure out when we comparing string[0] to another string and allow it.