LibertyImp on Nostr: Memory Updated: let x = 5; let x = x + 1; println!("x is: {}", x); Will print out 6 ...
Memory Updated:
let x = 5;
let x = x + 1;
println!("x is: {}", x);
Will print out 6 and this is completely ok
let x = 5;
x = x + 1;
println!("x is: {}", x);
The compiler holds your family hostage and threatens you
Published at
2025-02-24 02:14:00Event JSON
{
"id": "3bd248ed985413e12f419a7cddc5c4b10986441244bad6d65bdb5d8517604967",
"pubkey": "bf41becc8831e7315d9a99f83f11690999605fbb59474234f091a61613dc5991",
"created_at": 1740363240,
"kind": 1,
"tags": [],
"content": "Memory Updated:\n\nlet x = 5;\nlet x = x + 1;\nprintln!(\"x is: {}\", x);\nWill print out 6 and this is completely ok\n\nlet x = 5;\nx = x + 1;\nprintln!(\"x is: {}\", x);\nThe compiler holds your family hostage and threatens you",
"sig": "1dd58cd1323c2a71968a1b9a8af3fe3c0e8ada1187576a14d550e60cf6312510707bb80ae0bd3b75f4522a51f9e164e3578aa0b32aa8bca5e893d9b06d31aa66"
}