Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,24 @@
/*REXX program demonstrates a run─time evaluation of an expression (entered at run─time)*/
say ' enter the 1st expression to be evaluated:'
parse pull x /*obtain an expression from the console*/
y.1= x /*save the provided expression for X. */
say
say ' enter the 2nd expression to be evaluated:'
parse pull x /*obtain an expression from the console*/
y.2= x /*save the provided expression for X. */
say
say ' 1st expression entered is: ' y.1
say ' 2nd expression entered is: ' y.2
say
interpret 'say " value of the difference is: "' y.2 "-" '('y.1")" /* ◄─────┐ */
/**/
/**/
/*subtract 1st exp. from the 2nd──►──┘ */
drop x /*X var. is no longer a global variable*/
exit 0 /*stick a fork in it, we're all done. */