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
// (does NOT destroy value, but sets value to 0, the initial value)
uint x = 5;
delete x;
// Destructuring/Tuples