DEV Community

Discussion on: What ever happened to putting the object type on the left?

Collapse
 
maruru profile image
Marco Alka

I think, that's just a language quirk and has been there all the way back. Just think about Pascal:

program hello;
var
  word: String;
begin
  word := 'Hello World!';
  writeln(word);
end.