mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-11 10:09:26 +00:00
9 lines
196 B
Python
9 lines
196 B
Python
# Returns Top of the list L
|
|
def GetTop(L):
|
|
return L[len(L)-1]
|
|
|
|
# Remove first element of list and return it
|
|
def Read(Tokens):
|
|
X = Tokens[0]
|
|
Tokens = Tokens[1:]
|
|
return Tokens, X
|