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/lists.grnd

15 lines
271 B
Plaintext
Raw Normal View History

2025-08-10 16:08:56 +10:00
# A cool list
2025-10-13 09:16:28 +11:00
setlist &favWords "hello" "there" "general" "kenobi"
stdlnout $favWords
2025-08-10 16:08:56 +10:00
2025-08-10 13:31:28 +10:00
set &count 0
2025-08-10 16:08:56 +10:00
set &passedThrough true
@jmpbck
2025-10-13 09:16:28 +11:00
getlistat &favWords $count &tmp
2025-08-10 13:31:28 +10:00
stdlnout $tmp
add $count 1 &count
2025-10-13 09:16:28 +11:00
getlistsize &favWords &tmp2
2025-08-10 13:31:28 +10:00
inequal $count $tmp2 &tmp3
2025-08-10 16:08:56 +10:00
if $tmp3 %jmpbck