# case...endcase.
~~~~~~~~~~~~~
> example program
------------------
REPORT ZAJAY_PRACTICE.
CASE 'true'.
when 'true'.
write 'true'.
when 'false'.
write 'false'.
when others.
write 'other word'.
ENDCASE.
output : true
# case...endcase.
~~~~~~~~~~~~~
> example program
------------------
REPORT ZAJAY_PRACTICE.
CASE 'true'.
when 'true'.
write 'true'.
when 'false'.
write 'false'.
when others.
write 'other word'.
ENDCASE.
output : true
Comments
Post a Comment