Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -1,4 +1,23 @@
/* Rexx */
-- 24 Aug 2025
say 'PROGRAM NAME'
say
call Internal 'as routine'
dummy=Internal('as function')
call External 'as routine'
dummy=External('as function')
'regina External' 'as command'
'rexx External' 'as command'
exit
Parse source . . pgmPath
Say pgmPath
Internal:
parse arg xx
say 'Internal' xx 'returns...'
parse version rexx
parse source system command program
say 'Interpreter ' rexx
say 'Platform ' system
say 'Invoked as ' command
say 'Program name' program
say 'Interface ' address()
say
return 0