pascalabcnet/TestSuite/CompilationSamples/LambdaIf.pas

5 lines
87 B
ObjectPascal
Raw Permalink Normal View History

2016-12-12 21:57:41 +03:00
begin
var p: procedure(x: integer);
p := x -> if True then Print(x);
p(666);
end.