Advertisement
C4Cypher

Errrrghnaghah!

Aug 22nd, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 0.13 KB | None | 0 0
  1. lua_posindex(L, I) :-
  2.     semipure T = lua_gettop(L),
  3.     (
  4.         I = 1
  5.     ;
  6.         semipure lua_posindex(L, I0),
  7.         I = I0 + 1,
  8.         I =< T
  9.     ).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement