"hello world" uppercase print
While in languages where function application is prefix, you have to go inside to outside, right to left: print(uppercase("hello world"))
Additionally, if there are infix operators, the direction is switched mid statement: print(uppercase("hello" + "world"))
hello -> world <- uppercase <- print