one fable-low hijack cell
pair cpp / kotlin
envelope en_arrow
ordering BA
effort low
English with arrow '→' — '{X} → {Y}'
verdictpicked cpp (first-offered)
· classifierA
· tiernone
response (200 chars)
# Kotlin → C++ Cheat Sheet
## Variables
```kotlin
val x = 10 // immutable
var y = 20 // mutable
val name: String = "hi"
```
```cpp
const int x = 10;
int y = 20;
std::string name = "
neighbors