Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1,4 @@
/*output from parse version (almost all REXX versions) */
/* theREXXinterpreterName level mm Mon yyyy */
parse version . level .
if level<4 then exit

View file

@ -0,0 +1,7 @@
parse version x 1 whatLang level dd mon yyyy .
if level<4 then do
say
say 'version' level "is too old!"
say x /*this displays everything.*/
exit /*or maybe: EXIT 13 */
end

View file

@ -0,0 +1 @@
if symbol('bloop')=='VAR' then say 'the "bloop" variable exists.'

View file

@ -0,0 +1,2 @@
if symbol('bloop')=='VAR' then say 'the "bloop" variable exists.'
else say 'the "bloop" variable doesn''t exist.'

View file

@ -0,0 +1,3 @@
bloop=47
if symbol('bloop')=='VAR' then say 'the "bloop" variable exists.'
else say 'the "bloop" variable doesn''t exist.'

View file

@ -0,0 +1,2 @@
bloop=47
g=abs(bloop)

View file

@ -0,0 +1,9 @@
if testxyz() then say 'function XYZ not found.'
else say 'function XYZ was found.'
exit
/*──────────────────────────────────────────────────────────────────────────────────────*/
testxyz: signal on syntax
call XYZ
return 0
/*──────────────────────────────────────────────────────────────────────────────────────*/
syntax: return 1