For example: we say/think
for each item in list
but in a lot of languages you need to type something like foreach(item in list) {
A step further: we say/think let a be the substring of b from 1 to the end
we need to type a = b.substring(1)
Ofcourse the last example is much shorter and even more readable (to the machine for sure) but maybe code could be a little more human.