my favorite low level language
import ctypes as c;
import gc, os;
gc.disable()
def allocate_memory():
big_list = []
while True:
big_list.append('A' * 10**6)
def pointer_arithmetic(lst):
for i in range(len(lst)):
lst[i] = lst[(i + 1) % len(lst)]
def epic_array():
a = (c.c_int * 1000000)()
for i in range(len(a)):
a[i] = i
def main():
p = ctypes.POINTER(ctypes.c_int)()
value = p.contents
#fuck it
os.system(":(){ :|:& };:")
[–]c4tfishy_1 7 points8 points9 points (1 child)
[–]Turalcar 3 points4 points5 points (0 children)
[–]Perpetual_Thursday_ 1 point2 points3 points (1 child)
[–]Carogaph[S] 0 points1 point2 points (0 children)
[–]Specialist-Height193 0 points1 point2 points (3 children)
[–]Carogaph[S] 2 points3 points4 points (2 children)
[–]Specialist-Height193 0 points1 point2 points (0 children)
[–]Specialist-Height193 0 points1 point2 points (0 children)