All these terms are necessarily loose, but I hope you get what I mean.)Consider[i < 10] whileTrue: [Transcript show: i printString. i := i + 1]The syntax is clearly consistent -- everything is a message sent to the thing that precedes it ([i < 10] is a block that is sent the whileTrue: message), but it is sort of head-twistingly backwards from the expected while (i < 10) ..., even thou