pascalabcnet/InstallerSamples/WhatsNew/3_8_1/FunInShortPrograms.pas
Mikhalkovich Stanislav 8682125251 Added & Changed examples
2022-04-18 15:23:21 +03:00

6 lines
160 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

##
// В коротких программах можно описывать подпрограммы
function Add(a,b: integer) := a + b;
Print(Add(2,3));