RosettaCodeData/Task/Empty-string/OoRexx/empty-string.rexx
2023-07-01 13:44:08 -04:00

5 lines
174 B
Rexx

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'