[go: up one dir, main page]

  • androidul@lemmy.mlBanned
    link
    fedilink
    English
    arrow-up
    2
    1 year ago

    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
    
    • atnbueno@lemmy.world
      link
      fedilink
      English
      arrow-up
      3
      1 year ago

      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)