home *** CD-ROM | disk | FTP | other *** search
- /*
- * Ciao.rexx
- * Script ARexx di esempio - TurboCalc2.0 © 1993 by M.Friedrich
- *
- * Questo esempio chiede il tuo nome (dall'interno di TurboCalc)
- * poi lo legge e lo stampa (nella shell)
- */
-
- Options FailAt 0
- Options Results
-
- ADDRESS TCALC
-
- 'INPUT "Immetti il tuo nome" "Nome:" C3'
- GETVALUE C3
-
- say "Ciao" RESULT||", divertiti con TurboCalc"
-
-