This repository has been archived on 2026-01-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ground-old/tests/exists.grnd

18 lines
260 B
Plaintext

set &testVar "dingus"
exists &testVar &exist
stdlnout $exist
setlist &myList "item"
exists &myList &exist
stdlnout $exist
@dingus
exists %dingus &exist
stdlnout $exist
exists &doesNotExist &exist
stdlnout $exist
exists %doesNotExist &exist
stdlnout $exist