Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
3
Task/Boolean-values/PL-I/boolean-values-1.pli
Normal file
3
Task/Boolean-values/PL-I/boolean-values-1.pli
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Declare x bit(1);
|
||||
x='1'b; /* True */
|
||||
x='0'b; /* False */
|
||||
11
Task/Boolean-values/PL-I/boolean-values-2.pli
Normal file
11
Task/Boolean-values/PL-I/boolean-values-2.pli
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue