Ron Weidner wrote: > I'm looking for a little syntax help please. How do > you use units in a unit? The following doesn't work. > > unit unit_test; > interface > uses crt; > function make_line(): String; > > implementation > function make_line(): String; > begin > make_line := 'This is a string returned'; > end; > end. > Like this.