RosettaCodeData/Task/Search-a-list/Icon/search-a-list-2.icon
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
148 B
Text

procedure lindex(lst, x) #: generate indices for items matching x
local i
every i := 1 to *lst do
if lst[i] === x then suspend i
end