gram on Nostr: npub1e2p79…raqmc Yeah, kinda. You can change where variables point. If "a = 2" then ...
npub1e2p79z2nl0xkd2n0qy52wwvej2y3j8ps28nl4utfsw0apsnc586seraqmc (npub1e2p…aqmc)
Yeah, kinda. You can change where variables point. If "a = 2" then "a = a + 1" will allocate place in memory for a new integer, place 3 there, and make "a" point there. Later, garbage collector will remove 2 if nobody needs it anymore.
Yeah, kinda. You can change where variables point. If "a = 2" then "a = a + 1" will allocate place in memory for a new integer, place 3 there, and make "a" point there. Later, garbage collector will remove 2 if nobody needs it anymore.