8 lines
141 B
Smalltalk
8 lines
141 B
Smalltalk
"Assign empty string to a variable"
|
|
str := ''.
|
|
|
|
"Check that string is empty"
|
|
str isEmpty.
|
|
|
|
"Check that string is not empty"
|
|
str isEmpty not.
|