RosettaCodeData/Task/Empty-string/OoRexx/empty-string.rexx

6 lines
174 B
Rexx
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
v=''
w=' '
if v=='' Then Say 'v contains the empty string'<
If length(w)>0 Then Say 'Variable w does not contain the empty string'
If w='' Then Say 'this is not a good test'