User input/Text: Difference between revisions

m
move REXX to proper position
m (move REXX to proper position)
Line 1,087:
number: 75000
Thank you. Your string was 'Slert...'.</pre>
 
=={{header|REXX}}==
<lang rexx>/*REXX program gets a string and the number 75000 from the console. */
 
say 'Please enter a text string:' /*show prompt for a text string. */
parse pull userString /*get the user text and store it.*/
 
do until userNumber=75000 /*repeat until correct.*/
say /*display a blank line.*/
say 'Please enter the number 75000' /*show the nice prompt.*/
parse pull userNumber /*get the user text. */
end /*until*/ /*now, check if it's OK*/
/*stick a fork in it, we're done.*/</lang>
 
=={{header|Retro}}==
Line 1,117 ⟶ 1,104:
puts "String = #{s}"
puts "Integer = #{i}"</lang>
 
=={{header|REXX}}==
<lang rexx>/*REXX program gets a string and the number 75000 from the console. */
 
say 'Please enter a text string:' /*show prompt for a text string. */
parse pull userString /*get the user text and store it.*/
 
do until userNumber=75000 /*repeat until correct.*/
say /*display a blank line.*/
say 'Please enter the number 75000' /*show the nice prompt.*/
parse pull userNumber /*get the user text. */
end /*until*/ /*now, check if it's OK*/
 
/*stick a fork in it, we're done.*/</lang>
 
=={{header|Scala}}==
2,295

edits