RosettaCodeData/Task/Empty-string/Nom/empty-string.num

7 lines
260 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
# set the workspace buffer to ""
clear;
# print a message and exit if the workspace is not empty
!"" { clear; add "workspace not empty"; print; quit; }
# print a message and exit if the workspace is empty
"" { add "workspace empty"; print; quit; }