Amon@lemmy.world to Shortcuts@lemmy.worldEnglish · 1 year agoHow to add items to a list?message-squaremessage-square2fedilinkarrow-up14
arrow-up14message-squareHow to add items to a list?Amon@lemmy.world to Shortcuts@lemmy.worldEnglish · 1 year agomessage-square2fedilink
minus-squareandroidul@lemmy.mllinkfedilinkEnglisharrow-up2·1 year agoadd a List action, then do a loop where you add elements to it List Repeat Ask for Input (Text) Add to Variable (List) End Repeat
minus-squareatnbueno@lemmy.worldlinkfedilinkEnglisharrow-up2·1 year agoThe output of a Repeat loop is already a list, so you can do this too: Repeat 10 Ask for Input (Text) End Repeat Set Variable (MyList) to (Repeat Results)
add a List action, then do a loop where you add elements to it
List Repeat Ask for Input (Text) Add to Variable (List) End RepeatThe output of a Repeat loop is already a list, so you can do this too:
Repeat 10 Ask for Input (Text) End Repeat Set Variable (MyList) to (Repeat Results)