Skip to content

Instantly share code, notes, and snippets.

@marciojrtorres
Last active July 21, 2016 23:50
Show Gist options
  • Save marciojrtorres/3065c164af0b89eb033a108b1936ed3a to your computer and use it in GitHub Desktop.
Save marciojrtorres/3065c164af0b89eb033a108b1936ed3a to your computer and use it in GitHub Desktop.
POO com honra: procedimento para somar dois números em Pascal
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