vault backup: 2026-04-16 08:23:41

This commit is contained in:
Jan Meyer
2026-04-16 08:23:41 +02:00
parent 1194d23d6c
commit 9db4f43b39

View File

@@ -16,3 +16,21 @@ tags:
--- ---
## 📝 Content ## 📝 Content
## Classes
C approach of defining a Pokemon:
```C
typedef struct {
int exp;
int attack;
unsigned int hp;
char name[];
} Pokemon;
```
```C++
class Pokemon() {
}
```