>>582
それに加えて型推論付きなので変数の型名を書かずに済む
var sl: TStringList;
...
sl := TStringList.Create;
 ↓
var sl := TStringList.Create;

var ret := myfunc;