Files
ground_fork/tests/lists.grnd

14 lines
252 B
Plaintext
Raw Normal View History

2025-08-10 16:08:56 +10:00
# A cool list
setlist *favWords "hello" "there" "general" "kenobi"
2025-08-10 13:31:28 +10:00
set &count 0
2025-08-10 16:08:56 +10:00
set &passedThrough true
@jmpbck
getlistat *favWords $count &tmp
2025-08-10 13:31:28 +10:00
stdlnout $tmp
add $count 1 &count
2025-08-10 16:08:56 +10: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