Created
October 18, 2022 01:54
-
-
Save viniciussanchez/fc8c2172afe43dc9df1a9b1a86270d72 to your computer and use it in GitHub Desktop.
Somar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Somar(valor1, valor2: Double): Double; | |
begin | |
Result := valor1 + valor2; | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment