File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ def main() -> int:
9595```
9696
9797The problem is that when we do ` increment_y(p) ` ,
98- we simply pass the 64 (or more) bytes of the instance ` p ` to the ` increment_y() ` function.
98+ we simply pass the 64 bits of the instance ` p ` to the ` increment_y() ` function.
9999This is very similar to creating two variables ` x ` and ` y ` in the ` main() ` function:
100100
101101``` python
Original file line number Diff line number Diff line change @@ -172,9 +172,6 @@ def main() -> int:
172172 return 0
173173```
174174
175- The purpose of the ` assert ` is to ensure that the ` descriptions ` array stays up to date
176- when new operations are added.
177-
178175You can also convert integers to enums,
179176but note that the result might not correspond with any member of the enum.
180177For example:
Original file line number Diff line number Diff line change @@ -459,8 +459,7 @@ def main() -> int:
459459Note that unlike in Python,
460460you don' t need to use `global` inside a function to modify the global variable.
461461
462- By default, global variables are always initialized to zero memory,
463- and it is not possible to specify any other initializing.
462+ By default, global variables are always initialized to zero memory.
464463For example, numbers are initialized to zero, booleans are initialized to `False ` and pointers are initialized to `NULL ` .
465464It is possible to specify a different initial value:
466465
You can’t perform that action at this time.
0 commit comments