Last active
July 21, 2016 23:50
-
-
Save marciojrtorres/3065c164af0b89eb033a108b1936ed3a to your computer and use it in GitHub Desktop.
POO com honra: procedimento para somar dois números em Pascal
This file contains 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
Procedure Soma (Var Valor_1, Valor_2 : Integer); | |
Var Soma : Integer; | |
Begin | |
Soma := Valor_1 + Valor_2; | |
Writeln ('Soma = ', Soma); | |
End; | |
// https://gist.github.com/marciojrtorres/3065c164af0b89eb033a108b1936ed3a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment