June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -0,0 +1,23 @@
|
|||
property _exp
|
||||
property _index
|
||||
|
||||
-- @constructor
|
||||
on new (me, e)
|
||||
me._exp = e
|
||||
me._index = 0
|
||||
return me
|
||||
end
|
||||
|
||||
on exec (me, input)
|
||||
me._index = me._index+1
|
||||
input[1] = integer(power(me._index, me._exp))
|
||||
return TRUE
|
||||
end
|
||||
|
||||
on skip (me, steps)
|
||||
me._index = me._index + steps
|
||||
end
|
||||
|
||||
on reset (me)
|
||||
me._index = 0
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue