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
Raw Normal View History

2025-08-30 10:50:19 +10:00
set &testVar "dingus"
exists &testVar &exist
stdlnout $exist
2025-10-13 09:16:28 +11:00
setlist &myList "item"
exists &myList &exist
2025-08-30 10:50:19 +10:00
stdlnout $exist
@dingus
exists %dingus &exist
stdlnout $exist
exists &doesNotExist &exist
stdlnout $exist
exists %doesNotExist &exist
stdlnout $exist