5 lines
174 B
Rexx
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'
|