pascalabcnet/CodeExamples/Patterns/patterns-simple-const.pas
Александр Погорелов abaecf807f Formatter fixes, code examples.
2019-05-23 10:37:16 +03:00

8 lines
142 B
ObjectPascal

begin
var a := 3.14;
match a with
1.0, 2.0, 3.0: Println(1);
3.13, 3.14, 3.15, 3.16: print(2);
123.0: print(3);
end;
end.