Created
March 11, 2020 20:23
-
-
Save mvgolom/e86565abfec502b3d272babe8277a718 to your computer and use it in GitHub Desktop.
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
//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