RosettaCodeData/Task/Empty-string/Factor/empty-string-2.factor
2023-07-01 13:44:08 -04:00

6 lines
98 B
Factor

USE: locals
[let
"" :> empty-string
empty-string empty? .
empty-string empty? not .
]