4 lines
177 B
Text
4 lines
177 B
Text
main =>
|
|
S = "", % assign an empty string to a variable
|
|
S == [], % check that a string is empty,
|
|
"not empty" != []. % check that a string is not empty
|