nielsAD / lape

Scripting engine with Pascal-like syntax for FPC and Delphi
118 stars 28 forks source link

Assigning ranges not compilable... #87

Closed 3FLLC closed 7 years ago

3FLLC commented 8 years ago
type
   xset=set of char;

var
   x:xset;

begin
   x:=['0'..'9','A'..'Z','a'..'z']; // > won't compile.
end.

returns: "Invalid evaluation at line 8, column 7 in file "xset.p""

nielsAD commented 7 years ago

Thanks for reporting!