Skip to content

Latest commit

 

History

History
18 lines (18 loc) · 293 Bytes

repeat_each.md

File metadata and controls

18 lines (18 loc) · 293 Bytes

Repeat Each

Notes

Repeat Each will repeat through each item in the variable you supply it. Available Variables within repeat

  1. Repeat Index
  2. Repeat Item

Syntax

repeatEach(<#Variable#>) {
	•Actions•
}

Example

repeatEach(assignments) {
	quicklook(Repeat Item)
}