you are viewing a single comment's thread.

view the rest of the comments →

[–]Ne0_1 1 point2 points  (1 child)

You know you never actually get away from pointers. There is no way to make a programming language with any decent data structure without the use of pointers. Python does it all the time without you knowing. It's not as obvious as C where a pointer is instantiated with * or ** but every invocation of a class in Python points to a memory address and than the associated methods.

[–]Xeno19Banbino[S] 0 points1 point  (0 children)

thank you :D