RosettaCodeData/Task/Empty-string/Factor/empty-string-2.factor

7 lines
98 B
Factor
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
USE: locals
[let
"" :> empty-string
empty-string empty? .
empty-string empty? not .
]