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

8 lines
81 B
Text

text s;
s = "";
if (length(s) == 0) {
...
}
if (length(s) != 0) {
....
}