Skip to content
This repository has been archived by the owner on Jan 1, 2019. It is now read-only.

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mil1200 authored Oct 1, 2017
1 parent eb1f4f0 commit 63bbbd0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Pascal/yourname.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Program yourname;
Var
name, surname: String;
Begin
write('Enter your name:'); //difference between write / writeln
readln(name);
write('Enter your surname:');
readln(surname);
writeln; //added lines for better output
writeln('Your full name is: ',name,' ',surname);
readln;
End.

0 comments on commit 63bbbd0

Please sign in to comment.