Swift:
Uncategorized
1
Posts
1
Posters
0
Views
-
Swift:
```
struct X {
var a: Int
var b: Int
}
```Rust:
```
struct X {
a: i32,
b: i32,
}
```C-ish:
```
struct X {
a: int;
b: int;
}
```Choose your syntax!
-
undefined oblomov@sociale.network shared this topic