Skip to content

Instantly share code, notes, and snippets.

@mvgolom
Created March 11, 2020 20:23
Show Gist options
  • Save mvgolom/e86565abfec502b3d272babe8277a718 to your computer and use it in GitHub Desktop.
Save mvgolom/e86565abfec502b3d272babe8277a718 to your computer and use it in GitHub Desktop.
//fpc 3.0.0
program HelloWorld;
var
Meunome: String;
Idade: Integer;
begin
writeln('Informe seu Nome');
read(Meunome);
writeln('Informe sua Idade');
read(Idade);
writeln('seu nome é ',Meunome,' sua idade é ',Idade);
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment