Skip to content

Instantly share code, notes, and snippets.

@dominik-hadl
Created August 11, 2016 09:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dominik-hadl/f2fde27631e8850c6166a137e59e98ed to your computer and use it in GitHub Desktop.
Save dominik-hadl/f2fde27631e8850c6166a137e59e98ed to your computer and use it in GitHub Desktop.
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