Amon to Shortcuts@lemmy.worldEnglish • 3 months agoHow to add items to a list?message-square2fedilinkarrow-up14arrow-down10
arrow-up14arrow-down1message-squareHow to add items to a list?Amon to Shortcuts@lemmy.worldEnglish • 3 months agomessage-square2fedilink
minus-square@androidul@lemmy.mllinkfedilinkEnglish2•3 months 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-square@atnbueno@lemmy.worldlinkfedilinkEnglish2•3 months 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 Repeat
The 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)