Skip to content

Instantly share code, notes, and snippets.

@viniciussanchez
Created October 18, 2022 01:54
Show Gist options
  • Save viniciussanchez/fc8c2172afe43dc9df1a9b1a86270d72 to your computer and use it in GitHub Desktop.
Save viniciussanchez/fc8c2172afe43dc9df1a9b1a86270d72 to your computer and use it in GitHub Desktop.
Somar
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