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,3 @@
Declare x bit(1);
x='1'b; /* True */
x='0'b; /* False */

View file

@ -0,0 +1,11 @@
*process source attributes xref macro or(!);
tf: proc options(main);
%Dcl true char; %true='''1''b';
%Dcl false char; %false='''0''b';
If true Then
Put Skip list('That''s true');
If false Then
Put Skip List('ERROR');
Else
Put Skip List('false was recognized');
End;