mirror of
https://github.com/HyperDbg/HyperDbg
synced 2026-08-15 06:29:09 -04:00
10 lines
196 B
Python
10 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
|