Created
August 11, 2016 09:52
-
-
Save dominik-hadl/f2fde27631e8850c6166a137e59e98ed to your computer and use it in GitHub Desktop.
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
Program NodesQuiz_Question8; | |
Var | |
Points : Integer; | |
YourName : String; | |
Begin {NodesQuiz_Question7} | |
Writeln('Welcome to another test question!'); | |
Writeln('What is your name?'); | |
Readln(YourName); | |
Write('Hey ', YourName); | |
Writeln(' can you spot the error?'); | |
Points = 800; | |
Write('If you got here, then you have won ', Points); | |
Writeln(' points! :)'); | |
End. {NodesQuiz_Question7} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment