pascalabcnet/CodeExamples/Patterns/patterns-simple-const.pas

8 lines
142 B
ObjectPascal
Raw Permalink Normal View History

begin
var a := 3.14;
match a with
2019-05-23 10:37:16 +03:00
1.0, 2.0, 3.0: Println(1);
3.13, 3.14, 3.15, 3.16: print(2);
123.0: print(3);
end;
end.