RosettaCodeData/Task/User-input-Text/ALGOL-68/user-input-text.alg
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

5 lines
100 B
Text

print("Enter a string: ");
STRING s := read string;
print("Enter a number: ");
INT i := read int;
~