1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-18 20:41:29 +02:00

Fix delete example

This commit is contained in:
Al
2022-07-22 19:40:54 +02:00
parent bfb73cb02b
commit 6de5f8152b

View File

@@ -278,7 +278,7 @@ f(22); // call
// Delete can be called on most types // Delete can be called on most types
// (does NOT destroy value, but sets value to 0, the initial value) // (does NOT destroy value, but sets value to 0, the initial value)
uint x = 5; delete x;
// Destructuring/Tuples // Destructuring/Tuples